Skip to content

jshaughn/hawkular-alerts

 
 

Repository files navigation

hawkular-alerts

Build Status

Hawkular Alerts 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.

About Alerts

The project is divided into several modules

hawkular-alerts-api

This is the public Java API for alerts component.
Users should use only this API to interact with alerts.

hawkular-alerts-engine

This is the implementation of the alerts engine.
It is responsible to manage the alerts definitions and the evaluation of the alerts conditions.
It includes a rules engine as part of the implementation details.

hawkular-alerts-rest

This is a public REST API for alerts component.
It is a wrapper of the main hawkular-alerts-api.

hawkular-alerts-bus

This component is responsible for the communication between the alerts engine and the bus.
hawkular-alerts-engine is decoupled from the bus, so it can be used in other scenarios
(i.e. standalone, third party alerts system).

hawkular-actions-api

Common API for action plugins.
An action plugin will be deployed as a .war artifact and it will interact with the bus via this API.

hawkular-actions-email
hawkular-actions-sms
hawkular-actions-snmp

Project examples with the skeleton of a action plugin.
Main responsabilities are:
- Register at deployment time into the alerts-engine.
- Process actions messages.

Setup

Hawkular Alerts can be easily deployed using Hawkular Bus as main container.

  1. Prepare hawkular-bus in your local environment

git clone https://github.com/hawkular/hawkular-bus.git
cd hawkular-bus
mvn clean install -Pdev

Profile -Pdev creates a pre-configured wildfly-8.2.0.Final server with all dependencies needed in

$YOUR_FOLDER/hawkular-bus/hawkular-nest/hawkular-nest-distro/target/wildfly-8.2.0.Final

We will call this wildfly server as $NEST_HOME

  1. Prepare hawkular-alerts in your local environment

git clone https://github.com/hawkular/hawkular-alerts.git
cd hawkular-alerts
mvn clean install -Pdev

Profile -Pdev copies hawkular-alerts artifacts into $NEST_HOME.
If hawkular-bus and hawkular-alerts are not in the same folder, you can define the location of wildfly server like:

NEST_HOME=$PATH_TO/hawkular-bus/hawkular-nest/hawkular-nest-distro/target/wildfly-8.2.0.Final
mvn clean install -Pdev -Dorg.hawkular.wildfly.home=$NEST_HOME
  1. Start the nest:

cd $NEST_HOME
bin/standalone.sh

Integration tests

Once the nest is up and running we can run the integration tests using -Prest profile:

mvn clean install -Prest

Documentation

REST API documentation can be generated using -Pdocgen profile.
The doc is generated under hawkular-alerts-rest/target folder.

mvn clean install -Pdocgen

Debug

  1. Set a DEBUG logger in the nest:

<logger category="org.hawkular.alerts">
    <level name="DEBUG"/>
</logger>
  1. Use curl to send messages directly to the bus for debugging:

curl -X POST -H "Content-Type: application/json" \
--data "{\"data\" : [ { \"id\": \"NumericData-01\", \"type\" : \"numeric\", \"value\" : 0.1} ]}" \
http://localhost:8080/hawkular-bus/message/HawkularAlertData

curl -X POST -H "Content-Type: application/json" \
--data "{\"data\" : [ { \"id\": \"StringData-01\", \"type\" : \"string\", \"value\" : \"Fred\"} ]}" \
http://localhost:8080/hawkular-bus/message/HawkularAlertData

curl -X POST -H "Content-Type: application/json" \
--data "{\"data\" : [ { \"id\": \"Availability-01\", \"type\" : \"availability\", \"value\" : \"UP\"} ]}" \
http://localhost:8080/hawkular-bus/message/HawkularAlertData

License

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.

About

Alerting subsystem for Hawkular

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 91.5%
  • Groovy 4.1%
  • XSLT 4.1%
  • Shell 0.3%