1.2.2 • Published 3 months ago

@yunfly/logstash-http v1.2.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

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 URL
  • application - string (optional) - used to identify your application's logs
  • logChannel - 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.

1.2.2

3 months ago

1.2.1

3 months ago

1.2.0

3 months ago