| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The logstash appenders for log4js send NDJSON formatted log events to logstash receivers. This appender uses HTTP to send the events (there is another logstash appender that uses UDP).
npm install log4js @log4js-node/logstash-httpThis appender will also pick up Logger context values from the events, and add them as p_ values in the logFaces event. See the example below for more details.
log4js.configure({
appenders: {
logstash: {
type: "@log4js-node/logstash-http",
url: "http://localhost:9200/_bulk",
application: "logstash-log4js",
logType: "application",
logChannel: "node",
},
},
categories: {
default: { appenders: ["logstash"], level: "info" },
},
});
const logger = log4js.getLogger();
logger.addContext("requestId", "123");
logger.info("some interesting log message");
logger.error("something has gone wrong");This example will result in two log events being sent to your localhost:9200. Both events will have a context.requestId property with a value of 123.
| Back | FazBrowse Home | New Git URL |