Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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 4,338 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.