Socket
Socket
Sign inDemoInstall

bi-logger

Package Overview
Dependencies
17
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bi-logger

wrapper around winston logger


Version published
Maintainers
3
Install size
2.69 MB
Created

Readme

Source

Build Status

var logger = require('bi-logger');
  • Logger's behavior is configured via a config object (Example 1) provided to logger.reinitialize method.
  • Unless the logger is reinitialized with user defined configuration, the logger saves logs to the porcess.cwd() + '/logs' dirrectory (=default behavior).

Example 1

{
    exitOnError: false,  // determines whether a process will exit with status code 1 on 'uncaughtException' event
    transports: [
        {
            type: 'fluentd', // [required]
            priority: 1, // [default=Infinity] [required]
            origin: 'bi-depot', // [required]
            host: '127.0.0.1', // [required]
            port: 24224, // [required]
            timeout: 3, // [optional]
            reconnectInterval: 60000 //ms [optional]
        },
        {
            type: 'file',
            level: 'error', // maximum log level of this sepecific transport, [optional]
            priority: 2,
            dir: 'logs', // can be absolute or relative to the node's process
            autocreate: true // whether the `dir` should be created if it does not exist
        },
        {
            type: 'console',
            level: 'uncaughtException',
            priority: 3
        }
    ]
}
  • The above config sets up the logger so that all messages are sent to fluentd server.
  • If temporary failure of the fluentd logger is experienced, reason behind the failure is logged into the ./logs/fault-${date}.json file.
  • Meanwhile, the fluentd transports continues to buffer its logs and tries to reconnect to the fluentd server.
  • Once connection is successfull, internal buffer with logs is flushed to the fluentd server.
Config
  • type - fluentd | file | console
  • priority - Highest=1 Lowest=Infinity
    • All logs are redirected to transports with the highest priority.
    • That means you can effectivelly log messages to more than one transport at the time given that two or more transports share same priority value.
    • Transports with lower priority define fallback log destinations in case main transport(s) (one(s) with the highest priority) experience temporary failure
  • level - maximum log level of this a transport
    • each logger possess the following levels (by default):
      uncaughtException | error | warn | info | verbose
    • The levels corresponds to a logger's methods eg. logger.error() & logger.info etc..
    • When transport's level option value equals eg. error - only uncaughException & error events will be logged. Other event will be ignored
Logging - usage
var logger = require('bi-logger');

//if needed, reinitialize should be called once at app's initialization cycle
//every time `reinitialize` is called, static `bi-logger` module is reconfigured
logger.reinitialize({
    transports: [
        type: 'file',
        dir: 'logs',
        autocreate: true
    ]
});

//somewhere in the app:
var err = new Error('test');
logger.error(err);

logger.error('message', {meta: 'data'});
logger.warn('message', {meta: 'data'});
logger.info('message', {meta: 'data'});
Custom loggers

For far, we discussed only logging of "fault" events in application's life cycle.
In case you need to log other types of data, eg. OAuth events, you want to create a new logger:


//create a new logger
var oauthLogger = logger.getOrBuildLogger('oauth', {
    levels: {
        authFailure: 0
        refreshAccess: 1,
    }
});

//use logger
oauthLogger.authFailure({
    accountId: 'id',
    ip: req.ip,
    origin: req.header('origin')
});

Keywords

FAQs

Last updated on 26 Jul 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc