Hawkular Alerting is the alerts module for Hawkular. It is responsible to define conditions rules over data events and fire alerts that can be sent by several action plugins.
Hawkular is a modular systems monitoring suite, that consists of several sub-projects for storing of metrics, alerting on incoming events and more. Those projects are developed in their own GitHub repositories and integrated in this project.
The project is divided into several modules
hawkular-alerts-api |
This is the public Java API for alerts component. |
hawkular-alerts-engine |
This is the implementation of the alerts engine. |
hawkular-alerts-rest |
This is a public REST API for alerts component. |
hawkular-alerts-actions |
Common API for action plugins. |
hawkular-alerts-actions-plugins |
Alert actions plugins. |
hawkular-alerts-filter-api |
Filter API to query which dataIds are published from triggers defined. |
hawkular-alerts-bus |
This component is responsible for the communication between the alerts engine and the bus. |
hawkular-alerts-bus-api |
This is the public API for message objects used in hawkular-alerts-bus. |
Hawkular Alerting can be built with the following steps:
git clone https://github.com/hawkular/hawkular-alerts.git
cd hawkular-alerts
./mvnw clean install
-
Hello World
A mandatory Hello World to show basic features of Alerting. -
Auto Resolve Process
Show how to use AUTORESOLVE conditions to automatically resolve alerts. -
Events
Tutorial about how to model Events and define conditions for Events evaluation. -
Group Triggers
Example about how to manage similar definitions using GroupTriggers as a template. -
Webhook
Hello World example using Webhooks as preferred action. -
Monitored Wildfly Server Demo
A composite demo where it shows how a Wildfly Server can be monitored at several levels (availability, deployments, application logs) using previous examples in a specific scenario.
There is a integration test suite that downloads a wildfly server and deploys hawkular-alerts with an embedded cassandra service. These integration tests can be executed using -Pitest profile:
./mvnw clean install -Pitest
There is a performance test suite focus in the hawkular-alerts-engine project. These tests are not active by default, they can be run using -Dtest-env=perf variable:
./mvnw clean install -Dtest-env=perf
There is a clustering test suite focus on partition and distribution of the triggers and data across a topology of nodes. These test are not active by default, they can be run using -Denv=cluster variable:
./mvnw clean install -Denv=cluster
REST API documentation can be generated using -Pdocgen profile.
The doc is generated under hawkular-alerts-rest/target folder.
./mvnw clean install -Pdocgen
Hawkular-Alerts is released under Apache License, Version 2.0 as described in the LICENSE document
Copyright 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.