README.md
February 22, 2021 ยท View on GitHub
[](#contributors-)
Node.js Bunyan library for logging to LogDNA
Install
$ npm install --save logdna-bunyan
API
Please see @logdna/logger for instantiation options to passthrough to LogDNA's logger client.
Logging to LogDNA Through Bunyan
This module provides an interface that can be hooked into Bunyan and used as a
transport to LogDNA. Since @logdna/logger is also an EventEmitter, please make use
of the reemitErrorEvents
provided by Bunyan so that the implementor can be aware of errors in the LogDNA client.
Not doing so will cause Bunyan to throw if @logdna/logger emits an 'error'.
const {createLogger} = require('bunyan')
const LogDNAStream = require('logdna-bunyan')
const logDNA = new LogDNAStream({
key: apikey
}) // See @logdna/logger for more constructor options
const logger = createLogger({
name: "My Application"
, streams: [
{
stream: process.stdout
}
, {
stream: logDNA
, type: 'raw'
, reemitErrorEvents: true // Bubble up 'error' events from @logdna/logger
}
]
})
logger.info('Starting application on port %d', app.get('port'))
NOTE: You must use the raw stream type, and also reemitErrorEvents must be
true. Otherwise, errors emitted by @logdna/logger will throw Bunyan.
Contributors โจ
Thanks goes to these wonderful people (emoji key):
Muaz Siddiqui ๐ป ๐ |
Samir Musali ๐ป ๐ |
Darin Spivey ๐ป ๐ ๐ง |
vilyapilya ๐ป ๐ง |
s100 ๐ป |
Bartek R. ๐ป |
Mike Del Tito ๐ป ๐ง |
This project follows the all-contributors specification. Contributions of any kind welcome!
License
Copyright ยฉ LogDNA, released under an MIT license. See the LICENSE file and https://opensource.org/licenses/MIT
Happy Logging!