6.7.5 • Published 2 months ago

@tsed/logger-logstash-http v6.7.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@tsed/logger-logstash-http

Build Status Coverage Status TypeScript npm version Dependencies img img Known Vulnerabilities

A package of Ts.ED logger framework.

Features

The logstash appenders for Ts.ED Logger send NDJSON formatted log events to logstash receivers. This appender uses HTTP to send the events (there is another logstash appender that uses UDP).

Installation

npm install --save @tsed/logger-logstash-http

Configuration

  • type - logstash-http
  • options.url - string - logFaces receiver servlet URL
  • options.application - string (optional) - used to identify your application's logs
  • options.logChannel - string (optional) - also used to identify your application's logs but in a more specific way
  • options.logType - string (optional) - used for the type field in the logstash data
  • options.timeout - integer (optional, defaults to 5000ms) - the timeout for the HTTP request.
  • options.maxBuffer - integer (optional, defaults to 0) - Group bulk request by the maxBuffer number. By Default the buffer is disabled.

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

import {Logger} from "@tsed/logger";
import "@tsed/logger-logstash-http";

const logger = new Logger("loggerName");

logger.appenders.set("stdout", {
  type: "logstash-http",
  level: ["info"],
  options: {
    url: "http://localhost:9200/_bulk",
    application: "logstash-tsed",
    logType: "application",
    logChannel: "node"
  }
});

logger.context.set("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.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

The MIT License (MIT)

Copyright (c) 2016 - 2018 Romain Lenzotti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

6.7.5

2 months ago

6.7.4

2 months ago

6.7.3

2 months ago

6.7.0

2 months ago

6.7.2

2 months ago

6.7.1

2 months ago

6.6.3

8 months ago

6.6.2

11 months ago

6.6.1

11 months ago

6.6.0

11 months ago

6.5.0

1 year ago

6.4.0

1 year ago

6.3.4

1 year ago

6.3.3

1 year ago

6.3.0

2 years ago

6.3.2

2 years ago

6.3.1

2 years ago

6.2.2

2 years ago

6.2.1

2 years ago

6.2.0

2 years ago

6.1.2

2 years ago

6.1.4

2 years ago

6.1.3

2 years ago

6.1.1

2 years ago

6.1.0

2 years ago

6.0.1

2 years ago

6.0.2

2 years ago

6.0.0

2 years ago

5.17.0

3 years ago

5.16.0

3 years ago

5.15.0

3 years ago

5.14.0

3 years ago

5.13.3

3 years ago

5.13.2

3 years ago

5.13.1

3 years ago

5.13.0

3 years ago

5.12.2

3 years ago

5.12.1

3 years ago

5.12.0

3 years ago

5.11.0

3 years ago