A Winston transport wrapper for Logz.io
npm install winston-logzio --save-dev
var winston = require('winston');
var logzioWinstonTransport = require('winston-logzio');
var loggerOptions = {
token: '__YOUR_API_TOKEN__'
};
winston.add(logzioWinstonTransport, loggerOptions);
winston.log('info', 'winston logger configured with logzio transport');
Make sure you replace __YOUR_API_TOKEN__
with your own logz.io api token.
If you do not have a Logz.io account, you can sign up for a free trial here
This winston plugin, basically just wraps our nodejs logzio shipper.
If you want to configure the nodejs logger, any parameters sent to winston when initializing the transport
(what is held in the variable loggerOptions
in the sample above) will be passed to the logzio nodejs logger itself.