Package Exports
- log4js-fluent-appender
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (log4js-fluent-appender) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
log4js appender for fluent-logger
This package provides log4js-node appender for fluent-logger.
Install
$ npm install log4js-fluent-appenderPrerequistes
Fluent daemon should listen on TCP port.
Simple configuration is following:
<source>
@type forward
port 24224
</source>
<match **.*>
@type stdout
</match>Usage
const log4js = require('log4js');
log4js.configure({
appenders: {
fluent: {
type: 'log4js-fluent-appender',
tag_prefix: 'tag_prefix',
options: {
levelTag: true,
host: 'localhost',
port: 24224
}
}
},
categories: {
default: {
appenders: ['fluent'],
level: 'info'
}
}
});
const logger = log4js.getLogger();
logger.info('This is info message!');
setTimeout(() => {
log4js.shutdown(() => {});
}, 1000);See also:
Events
const log4js = require('log4js');
const fluentAppender = log4js.configure({
appenders: {
fluent: {
type: 'log4js-fluent-appender',
tag_prefix: 'tag_prefix',
options: {
levelTag: true,
host: 'localhost',
port: 24224
}
}
},
categories: {
default: {
appenders: ['fluent'],
level: 'info'
}
}
});
fluentAppender.on('connect', () => {
console.log('connect event!');
});
fluentAppender.on('error', (error) => {
console.log('error occured!');
});
connect: Handle net.Socket Event: connecterror: Handle net.Socket Event: error
Options
levelTag
If false, tag is "mytag". Otherwise tag is "mytag.INFO".
If you want to omit level tag such as .INFO, you must specify this value to false.
See fluent-logger.
License
Apache License, Version 2.0.
