Coder Social home page Coder Social logo

pino-roll's Introduction

pino-roll

npm version Build Status Known Vulnerabilities

js-standard-style

A Pino transport that automatically rolls your log files

Install

npm i pino-roll

Usage

import { join } from 'path'
import pino from 'pino'

const transport = pino.transport({
  target: 'pino-roll',
  options: { file: join('logs', 'log'), frequency: 'daily', mkdir: true }
})

const logger = pino(transport)

(Also works in CommonJS)

API

build(options) => SonicBoom

Creates a Pino transport (a Sonic-boom stream) to writing into files. Automatically rolls your files based on a given frequency, size, or both.

Options

You can specify any of Sonic-Boom options except dest

  • file: absolute or relative path to the log file. Your application needs the write right on the parent folder. Number will be appened to this file name. When the parent folder already contains numbered files, numbering will continue based on the highest number. If this path does not exist, the logger with throw an error unless you set mkdir to true.

  • size?: the maximum size of a given log file. Can be combined with frequency. Use k, m and g to express values in KB, MB or GB. Numerical values will be considered as MB.

  • frequency?: the amount of time a given log file is used. Can be combined with size. Use daily or hourly to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used. Numerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.

  • extension? appends the provided string after the file number.

License

MIT

pino-roll's People

Contributors

feugy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.