We use Zabbix API (problem.get) to integrate Zabbix with our Jira instance. We get problems reported for hosts via API that are not visible in Web ui.
I was able to reproduce this issue:
I was able to reproduce this issue:
- Create host, discover items like filesystems
- Trigger an alert by filling disk space
- Disable the disk space trigger or item
- Zabbix wont show you the disk full alert, but problem.get for this host will still report this problem
Code:
{
"jsonrpc": "2.0",
"method": "problem.get",
"params": {
"hostids": [
1234
],
"output": "extend",
"sortfield": [
"eventid"
],
"severities": [
2,
3,
4,
5
],
"sortorder": "DESC",
"symptom": false,
"suppressed": false
},
"id": 1
}
Comment