Icinga2:主机停机

Icinga2:主机停机

如何使用 api 或从 mysql 数据库查找 icinga2 中处于停机状态的主机。我尝试使用以下 api,但它没有显示在那里。

curl -H 'Cache-Control: no-cache' -k  -u root:icinga 'https://localhost:5665/v1/objects/hosts?host=hostanme.com'

答案1

我正在使用downtime_depth属性,尽管我对此不是 100% 确定。

curl -k -s
    'https://localhost:5665/v1/objects/hosts?filter=host.downtime_depth!=0' | \
python -mjson.tool`

相关内容