https://github.com/131/zabbix.js
Zabbix sender (via zabbix trapper protocol)
https://github.com/131/zabbix.js
Last synced: 12 months ago
JSON representation
Zabbix sender (via zabbix trapper protocol)
- Host: GitHub
- URL: https://github.com/131/zabbix.js
- Owner: 131
- License: mit
- Created: 2017-11-05T00:26:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-02-09T14:11:55.000Z (over 5 years ago)
- Last Synced: 2025-06-10T19:31:52.552Z (about 1 year ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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)