nopents
v0.1.8
Published
Node OpenTSDB client
Downloads
1,535
Readme
nopents
Node OpenTSDB Client
Installation
npm install nopents
Usage
Nopents = require('nopents')
client = new Nopents({
host: 'localhost',
port: 8125
});
client.send([
{
key: 'my.data.point',
val: 53,
tags: {
source: 'wind',
hostname: 'thor'
}
}
]);