5.0.1 • Published 9 months ago

h-logger2-elastic v5.0.1

Weekly downloads
18
License
MIT
Repository
github
Last release
9 months ago

h-logger2-elastic

Elasticsearch and APM integration for h-logger2.

Installation

$ npm install h-logger2-elastic

Creating Elasticsearch template (use src/template.json):

PUT /_template/logger-v3
<template>

Creating lifecycle policy (use src/policy.json):

PUT /_ilm/policy/logger-v3
<policy>

Creating the index:

PUT /logger-v3-000001 
{
    "aliases": {
        "logger-v3": {}
    }
}

Usage

const Logger = require('h-logger2');
const ElasticWriter = require('h-logger2-elastic');

const logger = new Logger('my-app-name', [ new Logger.ElasticWriter(Logger.TRACE, {
    esClient, // instance of elasticsearch client (https://github.com/elastic/elasticsearch-js)
    apmClient, // optional, instance of APM client (https://github.com/elastic/apm-agent-nodejs)
}) ]);

When apmClient is gived, messages with levels error and fatal are captured as APM errors instead of being sent to the regular elasticsearch index.

License

Copyright (c) 2018 - 2019 Martin Kolárik. Released under the MIT license.

5.0.1

9 months ago

5.0.0

9 months ago

4.0.2

2 years ago

4.0.1

2 years ago

4.0.0

2 years ago

3.0.1

3 years ago

3.0.0

5 years ago

2.3.0

5 years ago

2.2.0

5 years ago

2.1.4

5 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago