Skip to content

imbox/bunyan-amqp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bunyan-amqp

AMQP 0.9.1 compatible transport stream for use with the Bunyan logging library. Intended to be used with a RabbitMQ "topic" type exchange. Where the hostname becomes the first topic, the name of the Bunyan logger application is used as the secondary topic followed by the string log level. Example Topic: "My-MacbookPro.MyAppName.info". Has only been tested with RabbitMQ but it should be AMQP standards compliant.

TODO:

  • Test suite
  • More configuration options

This package was created for use with microservices at my company. I would eventually like to make this more configurable for public consumption.

var Log = require('bunyan').createLogger({
  name: 'MyAppName'
  streams: [
    {
      stream: process.stdout,
      level: 'trace',
    },
    {
      type: 'raw',
      level: 'debug',
      stream: require('bunyan-amqp')({
        host: '127.0.0.1',
        port: 5672,
        exchange: {
          name: 'exchangeName'
          options: {durable: true, autoDelete: false}
        },
        username: 'username',
        password: 'password',
      }),
    },
  ],
});

var ChildLog = Log.child({ module: 'MyAppNameChildModule' });

Log.info('Testing info level...');
Log.debug('Testing debug level...');
Log.fatal('Testing fatal level...');

ChildLog.info('Testing child info level...');
ChildLog.debug('Testing child debug level...');
ChildLog.fatal('Testing child fatal level...');

About

AMQP transport stream for Bunyan.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%