mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
'use strict';
|
|
const layouts = require('../layouts');
|
|
const dgram = require('dgram');
|
|
const util = require('util');
|
|
|
|
function logstashUDP(config, layout) {
|
|
const udp = dgram.createSocket('udp4');
|
|
const type = config.logType ? config.logType : config.category;
|
|
layout = layout || layouts.dummyLayout;
|
|
|
|
if (!config.fields) {
|
|
config.fields = {};
|
|
}
|
|
|
|
return function log(loggingEvent) {
|
|
/*
|
|
https://gist.github.com/jordansissel/2996677
|
|
{
|
|
'message' => 'hello world',
|
|
'@version' => '1',
|
|
'@timestamp' => '2014-04-22T23:03:14.111Z',
|
|
'type' => 'stdin',
|
|
'host' => 'hello.local'
|
|
}
|
|
@timestamp is the ISO8601 high-precision timestamp for the event.
|
|
@version is the version number of this json schema
|
|
Every other field is valid and fine.
|
|
*/
|
|
/* eslint no-prototype-builtins:1,no-restricted-syntax:[1, "ForInStatement"] */
|
|
if (loggingEvent.data.length > 1) {
|
|
const secondEvData = loggingEvent.data[1];
|
|
for (const key in secondEvData) {
|
|
if (secondEvData.hasOwnProperty(key)) {
|
|
config.fields[key] = secondEvData[key];
|
|
}
|
|
}
|
|
}
|
|
config.fields.level = loggingEvent.level.levelStr;
|
|
|
|
const logObject = {
|
|
'@version': '1',
|
|
'@timestamp': (new Date(loggingEvent.startTime)).toISOString(),
|
|
type: type,
|
|
message: layout(loggingEvent),
|
|
fields: config.fields
|
|
};
|
|
sendLog(udp, config.host, config.port, logObject);
|
|
};
|
|
}
|
|
|
|
function sendLog(udp, host, port, logObject) {
|
|
const buffer = new Buffer(JSON.stringify(logObject));
|
|
|
|
/* eslint no-unused-vars:0 */
|
|
udp.send(buffer, 0, buffer.length, port, host, (err, bytes) => {
|
|
if (err) {
|
|
console.error('log4js.logstashUDP - %s:%p Error: %s', host, port, util.inspect(err));
|
|
}
|
|
});
|
|
}
|
|
|
|
function configure(config) {
|
|
let layout;
|
|
if (config.layout) {
|
|
layout = layouts.layout(config.layout.type, config.layout);
|
|
}
|
|
|
|
return logstashUDP(config, layout);
|
|
}
|
|
|
|
module.exports.appender = logstashUDP;
|
|
module.exports.configure = configure;
|