loggly-stream

stream interface for sending JSON to loggly


License
MIT
Install
npm install loggly-stream@1.0.1

Documentation

loggly-stream

Simple stream interface to write to loggly using node-loggly.

Value in this is for piping json to it

Install

npm install loggly-stream

Example usage with bunyan:

var bunyan = require('bunyan');
var LogglyStream = require('loggly-stream');

var log = bunyan.createLogger({
  name: 'my_app',
  streams: [{
    type: 'raw',
    level: 'debug',
    stream: new LogglyStream({
      token: '...',
      subdomain: '...',
      auth: { user: '...',  password: '...' },
      host: 'logs.loggly.com',
      tags: ['global-tag']
    })
  }]
});

log.info('hello world');

License

MIT