Automatic Alert Export to Third-Party Systems

Sep 14, 2021 | Developer, DevOps, General

In the SIGNL4 web portal you can manually export historic alert reports as .csv files. In some cases it might be useful to export alert data programmatically. For example you can forward all alerts including specific parameters to InfluxDB and show the alert history in Grafana to recognize peaks, trends and abnormalities over time. You can even use AIOps to recognize certain trends automatically.

By using the SIGNL4 REST API it is possible to export alert data automatically. Here, we provide a sample script to do this.

You can trigger the export script automatically (e.g. every hour or every day) using a cron job or via tools like Node-RED.

Usage and Sample Code

Attention: This code is intended as a sample and only lightly tested with no guarantee. Please use with care.

We provide a sample JavaScript / Node.js script for exporting historic SIGNL4 alerts. The script uses the SIGNL4 REST API as documented here:

https://connect.signl4.com/api/docs/index.html

As a prerequisite you first need to install Node.js as described here.

The sample code is provided in the file ‘alert-export.js‘. You can execute the wile with the node command.

Command line sample:

node export-alerts.js

Within the source file you need to adapt the SIGNL4 API key, the team name, a user’s email address and the date range to be exported:

// The SIGNL4 API key.
const strAPIKey = ‘Your-SIGNL4-API-Key’;
// The team name of the SIGNL4 team.
const strTeamName = ‘Super SIGNL4’;
// The email address of a user for whom to export the alerts.
// The user needs to be a member of the team. Then all alerts for this team are exported.
const strUserEmail = ‘[email protected]’;
// Start of the date range to export alerts for.
const strDateFrom = ‘2021-08-01’;
// End of the date range to export alerts for.
const strDateTo = ‘2021-08-31’;

 

Attention: All times are UTC times.

You can create the API key in your SIGNL4 web portal under Teams -> Developer.

Right now the exported alerts are logged as command line result. You can change this according to your specific needs. For example you can export the alert data to a .csv file, database, InfluxDB, etc.

You can add your own export code in the function “getAlertDetails” right below “// Add your export code here”.

Please find the sample script here on GitHub: https://github.com/signl4/signl4-alert-export/.

Discover SIGNL4

SIGNL4 Alerting App

Stay ahead of critical incidents with SIGNL4 and its superpowers. SIGNL4 provides superior and automated mobile alerting, delivers alerts to the right people at the right time and enables operations teams to respond and to manage incidents from anywhere.

Learn more about SIGNL4 and start your free 30-days trial.