@yunfly/logstash-http
v1.2.2
Published
Logstash HTTP Appender for log4js-node
Downloads
12
Maintainers
Readme
forked from log4js-node/logstashHTTP, Adapt to elasticsearch8.x: Remove _type field
logstash Appender (HTTP) for log4js-node
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 @yunfly/logstash-http
Configuration
type
-@yunfly/logstash-http
url
-string
- logFaces receiver servlet URLapplication
-string
(optional) - used to identify your application's logslogChannel
-string
(optional) - also used to identify your application's logs [but in a more specific way]timeout
-integer
(optional, defaults to 5000ms) - the timeout for the HTTP request.agent
-http.Agent | https.Agent
(optional) - used to configure the requests being sent out if needed.
This 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.
Example (default config)
log4js.configure({
appenders: {
logstash: {
type: "@yunfly/logstash-http",
url: "http://localhost:9200/_bulk",
application: "logstash-log4js",
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
.