Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 731 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 731 Bytes

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