项目作者: kasa-network

项目描述 :
🌲 Koa Logging Middleware with Pino
高级语言: JavaScript
项目地址: git://github.com/kasa-network/koa-logging.git
创建时间: 2018-10-31T17:08:13Z
项目社区:https://github.com/kasa-network/koa-logging

开源协议:MIT License

下载



@kasa/koa-logging



A middleware that logs request and response in Koa


Installation

  1. # Using NPM
  2. $ npm install --save @kasa/koa-logging
  3. # Using Yarn
  4. $ yarn add @kasa/koa-logging

Dependencies

Usage

Use koa-request-id as a middleware for a koa app. By default, it writes logs into stdin for HTTP requests, responses and errors. Every log include the request id, which logger will try to get from common places such as ctx.reqId, ctx.state.reqId, ctx.req.id.

In the following example, you can check the request and response logs from stdin:

  1. // app.js
  2. const Koa = require('koa');
  3. const requestId = require('@kasa/koa-request-id');
  4. const logging = require('@kasa/koa-logging');
  5. const pino = require('pino');
  6. const app = new Koa();
  7. app.use(requestId());
  8. app.use(logging({ logger: pino() }));
  9. app.use(async ctx => {
  10. ctx.body = 'Hello, logging!';
  11. });
  12. app.listen(3000);
  1. $ node app.js || pino-pretty -c -l -t
  1. $ curl -X POST http://localhost:3000/users
  1. INFO [2018-11-04 09:54:00.596 +0000] (app/15600 on my-macbook): POST /users (4f83e15b-c34c-4f8c-9f57-938e54e54ae3)
  2. reqId: "4f83e15b-c34c-4f8c-9f57-938e54e54ae3"
  3. req: {
  4. "method": "POST",
  5. "path": "/users",
  6. "url": "/users",
  7. "headers": {
  8. "host": "localhost:3000",
  9. "user-agent": "curl/7.54.0",
  10. "accept": "*/*"
  11. },
  12. "protocol": "http",
  13. "ip": "127.0.0.1",
  14. "query": {}
  15. }
  16. event: "request"

API

Creating an middleware

You can create a new logging middleware by passing the existing pino logger and the relevant options to logging;

  1. const logger = pino();
  2. const middleware = logging({
  3. logger,
  4. serializers: {},
  5. overrideSerializers: true,
  6. getReqId: (ctx) => ctx.reqId,
  7. getRequestLogLevel: (ctx) => 'info',
  8. getResponseLogLevel: (ctx) => ctx.state >= 500 ? 'error' : 'info',
  9. getErrorLogLevel: (err) => 'error'
  10. });

Middleware Configuration

These are the available config options for the middleware. All is optional except logger.

  1. {
  2. // Logger instance of pino
  3. logger: pino(),
  4. // Serializers to override defaults provided
  5. serializers: {
  6. req: (ctx) => ({
  7. ...
  8. }),
  9. user: (ctx) => ({
  10. ...
  11. })
  12. },
  13. // Ovveride serializers if true (default: true)
  14. overrideSerializers: true,
  15. // Function to get the request id from `ctx`
  16. getReqId: (ctx) => ctx.reqId,
  17. // Function to decide log level of the request from `ctx`
  18. getRequestLogLevel: (ctx) => 'info',
  19. // Function to decide log level of the response from `ctx`
  20. getResponseLogLevel: (ctx) => ctx.state >= 500 ? 'error' : 'info',
  21. // Function to decide log level of the error from `err`
  22. getErrorLogLevel: (err) => 'error'
  23. }

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or ask feature requests.

License

Copyright © 2018, Kasa.