I have built a Node JS REST service using Express. Every request which lands on this service has headers like 'X-org-ReqId' & 'X-org-Tid' which I need to log in all the log lines which are written during execution of this request. Basically I need to log some contextual information with each log line to help me do transaction/request tracing through multiple services.
I am using winston logger initialized like this:
var winston = require('winston');
var appLogger = new(winston.Logger)({
transports: [
new(winston.transports.Console)({
level: 'info', //TODO: Should be changed to Error in prod
colorize: true
}),
new(winston.transports.DailyRotateFile)({
filename: '/var/log/org/my-service.log',
datePattern: '.yyyy-MM-dd',
tailable: true,
// handleExceptions: true,
json: true,
logstash: true
})
],
exitOnError: false
});
appLogger.on('error', function(err) {
console.error("Logger in error", err);
});
module.exports.logger = function() {
return appLogger;
};
and in individual classes wherever I want to use it, I do like this:
var logger = require('../config/logger').logger();
myObject.on("error", function (err) {
logger.error("Error connecting bucket=" + bucketId , err);
});
This will produce log like this:
{"level":"info","message":"Error connecting bucket=2.....","timestamp":"2015-06-10T06:44:48.690Z"}
Winston by default add timestamp to this log statement but I also want to log things like req.headers['X-org-ReqId'] & req.headers['X-org-Tid'] so that I know which transaction was failed and what was the error.
I want log like this:
{"level":"info","message":"Error connecting bucket=2....","timestamp":"2015-06-10T06:44:48.690Z", "tid":"a3e8b380-1caf-11e5-9a21-1697f925ec7b", "reqid":"aad28806-1caf-11e5-9a21-1697f925ec7b"}
In java world we used to have NDC, is there an equivalent in Node JS world?
I encountered the same issue as you. It may not be the best way of doing things because you have to propagate the 'req' object but it works.
I am willing to get any improvement :)
Frist I overwrite winston logging methods in my 'log.js' :
Then in every module that needs logging :
Produces a log in console and a JSON log in log file with every information neede to to follow a stream.
My next step would be not to have to propagate 'req' and getting the needed infos from a context or a session.
Hope that helped :)