4.4.0 • Published 1 year ago

@vrbo/pino-rotating-file v4.4.0

Weekly downloads
278
License
Apache-2.0
Repository
github
Last release
1 year ago

@vrbo/pino-rotating-file

NPM Version npm.io Dependency Status NPM Downloads

Introduction

A pino transport for filtering log entries and writing them to a file that automatically rotates. Log entries that are not filtered continue out of stdout.

This is useful for logging when you want different entries in different rotating files. Using rotating files allows you to roll logs across multiple files so that individual file sizes don't grow too large and old files get deleted.

At its core, this processor takes a simple config js file that contains an output path and additional options for the rotation. Under the hood, it uses the rotating-file-stream - check out the options. It also has a filter function to determine if the log entry should go to the log file, or be forwarded through to stdout.

Usage

Install this module as a dependency in your project with npm install @vrbo/pino-rotating-file

After this, you can reference it as rotate-logs in your npm scripts in your package.json file when running your main application, like this:

package.json

...
"scripts": {
  "start": "node ./index.js | rotate-logs --config=.request-log.js"
}
...

Example config file .request-log.js

module.exports = {
  filter(data) {return !!data.req},
  output: {
    path: "request.log", // name of file
    options: {
      path: "logs/", // path to write files to
      size: "10M", // max file size
      rotate: 5 // keep 5 rotated logs
    }
  }
}

If no --config flag is given, it will look for the file .rotate.js by default

Multiple log files

You can chain all these together to split your logs into separate, automatically rotating log files:

package.json

...
"scripts": {
  "start": "node ./index.js | rotate-logs --config=.request-log.js | rotate-logs --config=.error-log.js | rotate-logs --config=.server-log.js"
}
...

Where .request-log.js pulls all the logs that have req tags, .error-log.js pulls all the logs with error tags, and .server-log.js puts all the rest into another file.

NOTE: if the config provided does not exist or fails to load, then all logs will be passed to stdout.

File rotation only

To disable formatting logs into JSON and take advantage of file rotation only, simply add isJson: false to the output object in your configuration file:

module.exports = {
  filter(data) {return !!data.req},
  output: {
    path: "request.log",
    isJson: false // JSON formatting will be disabled,
    options: {
      // Options configured here are passed along to rotating-file-stream.
      // See the Introduction of this README for a link to valid options.
      ... 
    }
  }
}

Further Reading

4.4.0

1 year ago

4.3.2

1 year ago

4.3.1

1 year ago

4.3.0

1 year ago

4.2.0

1 year ago

4.1.0

2 years ago

4.0.0

2 years ago

3.0.0

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago