GithubHelp home page GithubHelp logo

dhruval-dream / logstashhttp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from log4js-node/logstashhttp

0.0 0.0 0.0 406 KB

Logstash HTTP appender for log4js-node

License: Apache License 2.0

JavaScript 100.00%

logstashhttp's Introduction

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 @log4js-node/logstash-http

Configuration

  • type - @log4js-node/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]
  • logType - string (optional) - used for the type field in the logstash data
  • 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: '@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.

logstashhttp's People

Contributors

lamweili avatar dependabot[bot] avatar nomiddlename avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.