This article explains the structure and data fields for the Eyer JSON alert, and go into more details on the most important data. All alerts can also be analyzed metric by metric in Grafana - setup Eyer integration

An alert can have three different statuses:

  1. new

  2. updated (an alert can have multiple updates)

  3. closed

An update of an alert can happen due to changed severity, or that more systems / nodes / metrics are included in the alert (other metrics can be affected by the initial anomalous behavior, so the alert is updated).

image-20240528-080806.png

For more information on the anomaly alert timeline and how alerts are updating, please see Anomaly alert timeline explained

image-20240530-075617.png

The section of the alert immediately following either new [], updated [] or closed [], contains data about the overall alert. In the screenshot above we see that the alert:

image-20240528-082603.png

The “items” section contains details about which systems, nodes and metrics that are part of the alert (for Boomi, see Boomi Atoms - data collector metrics & structure .


JSON

Description

{

"new": [],

Section for new alerts (none in example)

"updated": [

Section for updated alerts

{

"severity": "medium",

Total alert severity

"started": "2024-05-15T13:21:00Z",

Start date for the alert

"ended": null,

End date for the alert (none in example, still ongoing)

"updated": "2024-05-15T14:23:00Z",

Updated date for the alert

"id": "6644b718eb5838c9d4ca9041",

Unique Id for the alert. Same throughout the alert lifecycle (new, updates, closed)

"items": [

Section containing details about which systems, nodes and metrics that participates in the alert.

{

"node": {

Section that contains node information. Repeats per node.

"id": 101,

Unique node Id

"name": "Operating System. http://10.0.1.161:8778/jolokia",

Readable node name

"system": {

Section that contains system information for the system the node is connected to

"id": 1,

Unique system Id

"name": "http://10.0.1.161:8778/jolokia"

Readable system name

}

},

"metrics": [

Section that contains metrics connected to the node that participates in the alert. Repeats per metric

{

"id": "a59df24a-e9ec-4c4c-a087-ea1375d4b9c7",

Unique node Id

"name": "Process CPU Load",

Readable metric name

"metric_type": "double",

Metric type (double, int)

"aggregation": "avg",

Type of aggregation (avg, max, count)

"severity": "severe",

Anomaly severity for the metric

"started": "2024-05-15T13:20:00Z",

Start date for the anomaly on the metric

"updated": "2024-05-15T14:23:00Z"

Updated date for the anomaly on the metric

}

]

}

]

}

],

"closed": []

Section for closed alerts (none in example)

}