Open XIRALIP opened 4 years ago
this is my configuration:
const configuration : Configuration = {
appenders: {
stdout: {
type: 'console',
},
testKafka: {
type: 'log4js-kafka',
clientId: 'nodejs-skills',
brokers: bootstrap_servers ? bootstrap_servers.split(',') : ['localhost:9092'],
topic: 'test.log.skills.runtime',
ssl: false,
},
},
categories: {
default: { appenders: ['stdout', 'file'], level: 'debug' },
testKafka: { appenders: ['stdout', 'file', 'skills'], level: 'debug' },
},
pm2: true,
};