2.0.0 • Published 12 months ago

@s3pweb/s3pweb-logger v2.0.0

Weekly downloads
36
License
ISC
Repository
github
Last release
12 months ago

npm (scoped)

This is a simple lib to log messages built on top of bunyan. This lib can send logs to the console, to a file or to a logstash instance.

Installation

npm install @s3pweb/s3pweb-logger

Configuration

The constructor expect a config object following this format:

{
  "name": "your-application-name",
  "logger": {
    "source": false,
    "console": {
      "enable": true,
      "level": "debug"
    },
    "file": {
      "enable": true,
      "level": "info",
      "dir": "./logs",
      "addHostnameToPath": true
    },
    "server": {
      "enable": true,
      "level": "trace",
      "url": "0.0.0.0",
      "port": "9998",
      "type": "elk"
    },
    "ringBuffer": {
      "enable": true,
      "size": 5
    }
  }
}

Example

const Logger = require('@s3pweb/s3pweb-logger')

const log = new Logger(config).get()
const child = log.child({ child: 'childName' })

log.info('one message from log')
child.info('one message from child')

Tests

Set the name of your environment with NODE_ENV=xxxx before node

NODE_ENV=test node example/example.js

Bonus

To start a ELK stack on docker :

chmod +x example/startElk.sh 

./example/startElk.sh

Or with docker compose :

docker-compose -f example/docker-stack.yaml up -d

Open your favorite browser : http://localhost:5601

Create an index with just (replace logstash- by *)

2.0.0

12 months ago

1.1.3

1 year ago

1.1.1

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.4

3 years ago

1.0.3

4 years ago

1.0.2

4 years ago