
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
book-loggly
Advanced tools
loggly middleware for the book logging framework.
This middleware is shamelessly copy/modified from book-raven.
npm install book book-loggly --save
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!"))
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"
}
}
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);
})
See LICENSE file.
FAQs
loggly middleware for the book logging framework
The npm package book-loggly receives a total of 0 weekly downloads. As such, book-loggly popularity was classified as not popular.
We found that book-loggly demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.