Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
bunyan-loggly
Advanced tools
A bunyan stream to send logs through to loggly.
bunyan-loggly uses node-loggly under the hood. As such, when configuring bunyan-loggly as a stream for bunyan, you need to pass in the standard and required node-loggly configuration object.
For example:
{
token: "your-really-long-input-token",
subdomain: "your-subdomain"
}
This is a basic usage example.
var bunyan = require('bunyan');
var Bunyan2Loggly = require('bunyan-loggly');
var logglyConfig = {
token: 'your-account-token',
subdomain: 'your-sub-domain',
};
var logglyStream = new Bunyan2Loggly(logglyConfig);
// create the logger
var logger = bunyan.createLogger({
name: 'logglylog',
streams: [
{
type: 'raw',
stream: logglyStream,
},
],
});
logger.info({});
Please note: you MUST define
type: 'raw'
as bunyan-loggly expects to receive objects so that certain values can be changed as required by loggly (i.e. time to timestamp).
bunyan-loggly supports basic buffering and when setup, will only send your logs through to loggly on every x logs. To setup buffering, just pass an integer as the second parameter when creating a new instance of Bunyan2Loggly:
var bunyan = require('bunyan');
var Bunyan2Loggly = require('bunyan-loggly');
var logglyConfig = {
token: 'your-account-token',
subdomain: 'your-sub-domain',
};
var bufferLength = 5;
var logglyStream = new Bunyan2Loggly(logglyConfig, bufferLength);
// create the logger
var logger = bunyan.createLogger({
name: 'logglylog',
streams: [
{
type: 'raw',
stream: logglyStream,
},
],
});
logger.info({}); // won't send to loggly
logger.info({}); // won't send to loggly
logger.info({}); // won't send to loggly
logger.info({}); // won't send to loggly
logger.info({}); // will send to loggly
logger.info({}); // won't send to loggly
When buffering, a timeout can be provided to force flushing the buffer after a period of time. To setup a flush timeout, pass a timeout value (in ms) as the third parameter when creating a new instance of Bunyan2Loggly:
var bunyan = require('bunyan');
var Bunyan2Loggly = require('bunyan-loggly');
var logglyConfig = {
token: 'your-account-token',
subdomain: 'your-sub-domain',
};
var bufferLength = 5;
var bufferTimeout = 500;
var logglyStream = new Bunyan2Loggly(logglyConfig, bufferLength, bufferTimeout);
// create the logger
var logger = bunyan.createLogger({
name: 'logglylog',
streams: [
{
type: 'raw',
stream: logglyStream,
},
],
});
logger.info({}); // will be sent to loggly in 500ms if buffer threshold is not reached
Each time log content is sent to loggly, the result of this request will be passed to the optional callback paramer logglyCallback
var bunyan = require('bunyan');
var Bunyan2Loggly = require('bunyan-loggly');
var logglyConfig = {
token: 'your-account-token',
subdomain: 'your-sub-domain',
};
function logglyCallback(error, result, content) {
// handle loggly callback
}
var logglyStream = new Bunyan2Loggly(logglyConfig, null, null, logglyCallback);
FAQs
A bunyan stream to transport logs to loggly
The npm package bunyan-loggly receives a total of 3,074 weekly downloads. As such, bunyan-loggly popularity was classified as popular.
We found that bunyan-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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.