0

I have set the threshold value to get the alert in icinga2 for infrastructure. Alert is coming on Icinga2 UI but how to fetch this all alert data through API call either using JAVA or python. I need only alert data.

4

1 回答 1

1

使用事件流

这是一个例子:

curl -k -s -u root:icinga -H 'Accept: application/json' -X POST 'https://localhost:5665/v1/events?queue=america&types=CheckResult&filter=event.check_result.exit_status==2'

这意味着您将在服务变得关键时获取数据。如果您需要,这里有一些关于返回码的更多信息。Icinga2 使用与 Nagios 相同的方法。

于 2017-08-17T19:21:30.317 回答