Node-RED node to send data to Zabbix server
npm install node-red-contrib-zabbix-sender
msg.payload = [
"webserver",
"httpd.running",
0
]
`
You can set default hostname in node settings, then you can send just item name and value:
`
msg.payload = [
"httpd.running",
0
]
`
You can also send multiple items at once, just construct payload as array of arrays:
`
msg.payload = [
[
"dbserver",
"mysql.ping",
1
],
[
"webserver",
"httpd.running",
0
]
]
``