loggly-stream

1.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i loggly-stream

Weekly Downloads

2

Version

1.0.1

License

MIT

Last publish

Collaborators

  • jcrugzz