README
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
bunyan:
Example usage withvar 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