1.1.1 • Published 5 years ago

express-influxdb-logger v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

express-influxdb-logger

express-influxdb-logger is an Express middleware that can be used to log info on all HTTP requests to an InfluxDB instance.

Getting Started

const express = require('express');
const createInfluxDBLogger = require('express-influxdb-logger');

const app = express();
app.use(createInfluxDBLogger({
  host: 'my-influxdb-server.host',
  port: 8086,
  database: 'database_name',
  username: 'influxdb_user',
  password: 'influxdb_password,
}));

// Then declare your route handlers below.

Configuration

The following options are accepted when creating an instance of the InfluxDB logger:

  • host: hostname of your InfluxDB server (required)
  • port: port on which the InfluxDB's HTTP server listens on (required)
  • database: name of the database to log to (required)
  • protocol: either 'http' or 'https' (required, default: https)
  • username: username to authenticate with if the server requires
  • password: password to authenticate with if the server requires
  • flushAfter: send log lines to the database in batches of this number (default: 5)
  • flushInterval: send log lines to the database after this number of milliseconds max (default: 10000)

Note the flushAfter and flushInterval config values work together. By default, a batch will be sent to the server every time it has least 5 log entries in it, OR after 10 seconds of staleness at the longest.

Credits

A TypeScript fork and extension of influx-express.

1.1.1

5 years ago

1.1.0

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago