Socket
Socket
Sign inDemoInstall

book-loggly

Package Overview
Dependencies
2
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    book-loggly

loggly middleware for the book logging framework


Version published
Weekly downloads
8
increased by33.33%
Maintainers
1
Install size
24.3 kB
Created
Weekly downloads
 

Readme

Source

book-loggly

loggly middleware for the book logging framework.

This middleware is shamelessly copy/modified from book-raven.

Install

npm install book book-loggly --save

Use

var log = require('book').default();

var logglyClient = require('loggly').createClient(myLogglyConfig);

var bookLogglyOptions = {
  // A custom book-loggly option to ignore logs at ignore_levels and above
  // 0: panic, 1: error, 2: warning, 3: info, 4: debug (default), 5: trace
  "ignore_levels": log.TRACE,

  // An (optional) arbitrary object to add to the log event to notify where its coming from
  "from": {
    "instance-id": "123"
  }
};

log.use(require('book-loggly')(logglyClient, bookLogglyOptions));


// Now just log as usual
log.warn("Hey there!")
log.info("Logging this object", {some: 'object'})
log.error(new Error("test error!"))

Internals

book-loggly uses the loggly JSON capability to log objects. The general form of these objects is:

{
  "isError": false,
  "message": "message",
  "level_code": 3,
  "level": "warning",
  "extra": {
    "extra_parameters": "that were added by other middleware",
    "object fields": "from objects passed into the log function"
  },
  "from": {
    "static-information": "from options.from"
  }
}

uncaughtException

If there is an error sending the packet to loggly, an error will be thrown. To catch it, use uncaughtException. You can do anything here, but perhaps you want to exit.

process.on('uncaughtException', function(err) {
    log.panic(err);
    setTimeout(process.exit.bind(process, 1), 1500);
})

License

See LICENSE file.

Keywords

FAQs

Last updated on 31 Mar 2014

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