The goal of this project is to create a service to link Grafana Alerting to OperatorFabric.
More specifically, it adds two main functionalities:
-
Receiving Grafana alert nofitications through a webhook endpoint and converting them into Opfab cards
-
Providing a mapping system, editable via the UI, to register a set of options (such as card recipients, severity, ...) for different groups of alerts
Assuming you have cloned the repository:
-
Launch the server
cd server ./startServer.sh
-
Publish bundle and configuration
cd ../monitoring ./loadMonitoringConfig.sh
-
Start the alerting service
cd ../node-services/alerting-service npm ci npm start
-
Open localhost:2002 in your browser and log in using credentials
operator1_fr
/test
-
In a new terminal, run the following command to add a new mapping to the mappingConfig
curl -X POST http://localhost:2109/mapping/eee0zny1yjt34f -H "Content-Type: application/json" -d '{"recipients":["ENTITY1_FR"]}'
-
To test the alerting service, you can go to
node-services/alerting-test
and runnpm ci && npm start
. This will expose custom data to Grafana, and let you control the value (To trigger an alert, set the value above 10) -
You can also go to Mapping Administration screen to edit mapping configuration