yonjah / hapi-pino

🌲 Hapi plugin for the Pino logger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hapi-pino  Build Status Coverage Status

Hapi plugin for the Pino logger. It logs in JSON for easy post-processing. It is faster than good console logger by a 25% factor, which increases to 40% when using extreme mode. Using hapi-pino in extreme mode allows the "hello world" example to handle 40% more throughput than good.

Install

npm i hapi-pino --save

Usage

'use strict'

const Hapi = require('hapi')

// Create a server with a host and port
const server = new Hapi.Server()
server.connection({
  host: 'localhost',
  port: 3000
})

// Add the route
server.route({
  method: 'GET',
  path: '/',
  handler: function (request, reply) {
    // request.log is HAPI standard way of logging
    request.log(['a', 'b'], 'Request into hello world')

    // you can also use a pino instance, which will be faster
    request.logger.info('In handler %s', request.path)

    return reply('hello world')
  }
})

server.register(require('hapi-pino'), (err) => {
  if (err) {
    console.error(err)
    process.exit(1)
  }

  // the logger is available in server.app
  server.app.logger.warn('Pino is registered')

  // also as a decorated API
  server.logger().info('another way for accessing it')

  // and through Hapi standard logging system
  server.log(['subsystem'], 'third way for accessing it')

  // Start the server
  server.start((err) => {
    if (err) {
      console.error(err)
      process.exit(1)
    }
  })
})

API

hapi-pino goal is to enable Hapi applications to log via pino. To enable this, it decorates both the server and the request. Moreover, hapi-pino binds to the Hapi events system as described in the "Hapi events" section.

Options

  • [stream] - the binary stream to write stuff to, defaults to process.stdout.
  • [prettyPrint] - pretty print the logs (same as node server | pino), disable in production. Default is false, enable in development by passing true.
  • [tags] - a map to specify pairs of Hapi log tags and levels. By default, the tags trace, debug, info, warn, and error map to their corresponding level. Any mappings you supply take precedence over the default mappings. The default level tags are exposed via hapi-pino.levelTags.
  • [allTags] - the logging level to apply to all tags not matched by tags, defaults to 'info'.
  • [instance] - uses a previously created Pino instance as the logger. The instance's stream and serializers take precedence.

Server Decorations

hapi-pino decorates the Hapi server with:

  • server.logger(), which is a function that returns the current instance of pino, see its doc for the way to actual log.
  • server.app.logger, same as before, but the logger it is also attached to the server.app object.

Request Decorations

hapi-pino decorates the Hapi request with:

  • request.logger, which is an instance of pino bound to the current request, so you can trace all the logs of a given request. See pino doc for the way to actual log.

Hapi Events

hapi-pino listens to some Hapi events:

  • 'onRequest', to create a request-specific child logger
  • 'response', to log at 'info' level when a request is completed
  • 'response-error', to log at 'warn' level when a request errors
  • 'log', to support logging via the Hapi server.log() and request.log() methods, see tags and allTags options.
  • 'onPostStart', to log when the server is started
  • 'onPostStopt', to log when the server is stopped

Acknowledgements

This project was kindly sponsored by nearForm.

License

MIT

About

🌲 Hapi plugin for the Pino logger

License:MIT License


Languages

Language:JavaScript 100.0%