0.1.8 • Published 10 years ago

bunyan-pilgrim v0.1.8

Weekly downloads
5
License
BSD-2-Clause
Repository
github
Last release
10 years ago

bunyan-pilgrim

Pilgrim is a logging stream for trentm's node-bunyan module designed to work in conjunction with mcavage's node-restify server.

It allows you to direct a specific range of status codes to individual log files. For example, you can easily separate all client errors (4xx) from server errors (5xx) and successful requests (2xx) into a separate file for each category.

You can also ignore specific error codes, giving you greater control over your logging operations.

Installation

npm install bunyan-pilgrim

Usage

var bunyan = require('bunyan');
var Pilgrim = require('bunyan-pilgrim');

var logger = bunyan.createLogger({
  name: 'Pilgrim Test',
  streams: [
    {
      level: 'info',
      stream: new Pilgrim({
        from: 400,
        to: 499,
        stream: '/var/log/app-client-errors.log',
        ignore: [401]
      })
    },
    {
      level: 'info',
      stream: new Pilgrim({
        from: 500,
        to: 599,
        stream: '/var/log/app-server-errors.log'
      })
    }
  ]
});

server = restify.createServer({
  log: logger,
});

Configuration

Each Pilgrim is configured with a hash that includes the following:

  • from: the first status code that must be captured in this log
  • to: the last status code that msut be captured in this log
  • stream: either a string containing the path of the log file, or an instance of Stream.Writable.
  • ignore: an optional array of status codes that fall between from and to but should be ignored anyway.

Contributing

Contributions are welcome… particularly if accompanied by a unit test.

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago