node-red-contrib-zabbix-sender

1.0.0 • Public • Published

node-red-contrib-zabbix-sender

About

Send your data to Zabbix using the Zabbix trapper protocol. This node is the wrapper around node-zabbix-sender library.

Usage

To send simple item data, send message with following payload:

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
    ]
]

License

Code released under the MIT License. Zabbix logo is used under Zabbix Trademark and Logo Usage Policy.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i node-red-contrib-zabbix-sender

    Weekly Downloads

    12

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    8.43 kB

    Total Files

    6

    Last publish

    Collaborators

    • bashlakov