I'm using Zabbix Agent 2 for Windows (version 6.4) and would like to use web.page.get for monitoring.
web.page.get works with zabbix_get:
So I add UserParameter into zabbix_agent2.conf:
This doesn't work
What am I doing wrong?
web.page.get works with zabbix_get:
Code:
zabbix_get -s localhost -k web.page.get[http://localhost:1234/MyService/Version] HTTP/1.1 200 OK Connection: close Content-Length: 73 Content-Type: application/json; charset=utf-8 Date: Mon, 18 Mar 2024 11:02:59 GMT Server: Microsoft-HTTPAPI/2.0 "Service version: 47.3.8826.0"
Code:
UserParameter=MyVersion,web.page.get[http://localhost:1234/MyService/Version]
Code:
zabbix_get -s localhost -k MyVersion 'web.page.get[http:' is not recognized as an internal or external command,operable program or batch file.
Comment