I get the following answer to this curl query in CLI:
curl http://10.10.10.10:8080/monitoring?type=POOLS
{"severity": "OK", "checks": [{"severity": "OK", "name": "Fastlane pool count", "description": "0"}, {"severity": "OK" , "name": "Slowlane pool count", "description": "0"}]}
The severity of these is possible:
"OK"
"INACTIVE"
"WARNING"
"ERROR"
How can I monitor this in Zabbix without an external script?
I'm a beginner at Zabbix. Maybe the webcheck would be suitable for this, but could someone describe it step by step how I could solve it?
For severities, you may want to match a number and display the number value, e.g. thus:
OK = 0
INACTIVE = 1
WARNING = 2
ERROR = 3
Comment