New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

elastic-logging

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elastic-logging

Log directly to ElasticSearch

latest
Source
npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

Elastic-Log

Log directly to Elasticsearch. Library can handle high write rate beacuse it's using bulk API.

Example

(async function () {
    const el = new Logger({
        /**Elasticsearch host */
        esHost: '192.168.7.120:9200',
        /**Elasticsearch request timeout in milliseconds. Default is `30000`. */
        esRequestTimeout_ms: 5000,
        /**Flush interval in milliseconds. Default is `5000`. */
        flushInterval_ms: 900,
        /**Interval in seconds at which new index with suffix gets created.
         * Suffix is calculated as current timestamp divided by this interval
         * at the moment of `log` method call.
         * When set to `0` index will not get any suffix.
         * 
         * Default is `3600` (1 hour).*/
        indexSplitInterval_sec: 60,
        /**Log errors on stderr. Default is `true`. */
        logErrors: false,
    });

    // instance must be initialized
    await el.initialize();

    const mappingProps = { date: { type: "date" }};
    const msg1 = {
        date: Date.now(),
        ip: "192.168.1.102",
        retries: 8,
    };
    el.log("status", msg1, mappingProps);

    // make sure messages get written to elastic
    await el.flush();

    const msg2 = {
        date: Date.now() + 123,
        ip: "192.168.1.101",
        retries: 4,
    };
    el.log("status", msg2, mappingProps);

    // make sure to gracefully close
    await el.close();
})();

Keywords

ElasticSearch

FAQs

Package last updated on 24 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts