
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@madgex/datadog-logger
Advanced tools
Require the package:-
const DatadogLogger = require('@madgex/datadog-logger');
To use global logger instance:-
DatadogLogger.Logger.info('Using global logger instance');
To create the console logger (note - sets global logger instance):-
//Set min output level (lower levels won't be logged)
let loggerOptions = { level: 'debug' };
if (process.env.NODE_ENV === 'production') {
//If not set - logs wil be output to console
loggerOptions.dataDog = {
//Note: myServicePortNo - you will need to ask systems which port your service should log to
port: myServicePortNo,
udp: true, //if false will use TCP
// hostIp: x.x.x.x -- use to override agent host - leave unset to discover current host on AWS
};
}
_logger = await DatadogLogger.createLogger(loggerOptions);
_logger.info('logger is setup');
//OR
DatadogLogger.Logger.info('logger is setup');
Example usages:-
_logger.error(err);
_logger.debug('info', infoObj);
_logger.trace('trace message');
To setup the good reporter for Hapi:-
const goodOptions = {
ops: {
interval: 1000,
},
reporters: {
//Note: use previously created logger
loggerReporter: [DatadogLogger.createGoodReporter(_logger, {
pathsToInclude: ['/v1']
})]
},
};
const server = Hapi.server(...)
await server.register([
...
{ plugin: Good, options: goodOptions }
]);
This module has custom levels equivalent to those used in nlog and serilog:-
const _loggingLevels = {
fatal: 0,
error: 1,
warn: 2,
info: 3,
debug: 4,
trace: 5
};
FAQs
Setup console and Hapi Good logger
We found that @madgex/datadog-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 open source maintainers 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.