Email Notifications for Graylog Health

Greetings and pardon if this question has already been answered but I was wondering if it was possible to setup email alerts for Graylog health notifications such as these ones:

Thank you.

This is a good question. I’m interested in this as well

Best way will be probably to use NMS system like Zabbix, and check API /api/system/notifications and create e-mail notification based on output of API.

API shows same system notifications as section System - Overview:

{
  "total": 1,
  "notifications": [
    {
      "severity": "normal",
      "details": {
        "current_version": "3.3.4 (Sloth Rocket) released at 2020-08-06T00:00:00.000Z"
      },
      "type": "outdated_version",
      "timestamp": "2020-08-10T14:01:59.930Z",
      "node_id": "6279b6d3-bfc3-4394-9340-90f47c91b816"
    }
  ]
}

I checked source code and there is some interesting file with description of system notifications:

Thanks @shoothub, i made a Nagios check from the /api/system/notifications output . Work as a charm

Any idea how I would achieve the same with something like Grafana?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.