winston-graphite
v1.0.6
Published
Graphite transport layer for winston logging library
Downloads
33
Readme
winston-graphite
Graphite transport for NodeJS winston logging library
Installation
npm install winston-graphite
A Graphite TCP transport for winston.
Usage
Node
var winston = require('winston');
//
// Requiring `winston-graphite` will expose
// `winston.transports.Graphite`
//
require('winston-graphite');
winston.add(winston.transports.Graphite, {
port: 2003,
host: '127.0.0.1'
});
winston.info(
'mymetric.category_1 100'
);
// or
winston.info('mymetric.category_1', {value: 100, timestamp: 1435708800});
Performance
It currenlty works on our infrastructure, and processes about 500K datapoints per minute
License: MIT
See LICENSE for the full license text.