zabbix.js
Version:
Zabbix sender (via zabbix trapper protocol)
28 lines (16 loc) • 983 B
Markdown
An es7 efficient TCP client for zabbix (abide to zabbix trapper protocol)
[](https://travis-ci.org/131/zabbix.js)
[](https://coveralls.io/github/131/zabbix.js?branch=master)
[](https://www.npmjs.com/package/zabbix.js)
[](http://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/eslint-plugin-ivs)
# API
```
var Zabbix = require('zabbix.js');
var sender = new Zabbix('somezabbixhost');
sender.sendv("somekey", 42); //await me if you want
sender.sendd({"somekey": 42}); //if you prefer
```
# Credits
* [131](https://github.com/131)
* Inspired from [node-zabbix-sender](https://github.com/shamil/node-zabbix-sender)