Fastify

日志

日志默认关闭,你可以在创建 Fastify 实例时传入 { logger: true } 或者 { logger: { level: 'info' } } 选项来开启它。要注意的是,日志无法在运行时启用。为此,我们使用了 abstract-logging

Fastify 专注于性能,因此使用了 pino 作为日志工具。默认的日志级别为 'info'

开启日志相当简单:

  1. const fastify = require('fastify')({
  2. logger: true
  3. })
  4. fastify.get('/', options, function (request, reply) {
  5. request.log.info('Some info about the current request')
  6. reply.send({ hello: 'world' })
  7. })

在路由函数之外,你可以通过 Fastify 实例上挂载的 Pino 实例来记录日志:

  1. fastify.log.info('Something important happened!');

如果你想为日志配置选项,直接将选项传递给 Fastify 实例就可以了。 你可以在 Pino 的文档中找到全部选项。如果你想指定文件地址,可以:

  1. const fastify = require('fastify')({
  2. logger: {
  3. level: 'info',
  4. file: '/path/to/file' // 将调用 pino.destination()
  5. }
  6. })
  7. fastify.get('/', options, function (request, reply) {
  8. request.log.info('Some info about the current request')
  9. reply.send({ hello: 'world' })
  10. })

如果需要向 Pino 传送自定义流 (stream),仅需在 logger 对象中添加 stream 一项即可。

  1. const split = require('split2')
  2. const stream = split(JSON.parse)
  3. const fastify = require('fastify')({
  4. logger: {
  5. level: 'info',
  6. stream: stream
  7. }
  8. })

默认情况下,Fastify 给每个请求分配了一个 ID 以便跟踪。如果头部存在 “request-id” 即使用该值,否则会生成一个新的增量 ID。你可以通过 Fastify 工厂函数的 requestIdHeadergenReqId 来进行自定义。

默认的日志工具使用标准的序列化工具,生成包括 reqreserr 属性在内的序列化对象。req 对象是 Fastify Request 对象,而 res 则是 Fastify Reply 对象。可以借由指定自定义的序列化工具来改变这一行为。

  1. const fastify = require('fastify')({
  2. logger: {
  3. serializers: {
  4. req (request) {
  5. return { url: request.url }
  6. }
  7. }
  8. }
  9. })

响应的 payload 与 header 可以按如下方式记录日志 (即便这是不推荐的做法):

  1. const fastify = require('fastify')({
  2. logger: {
  3. prettyPrint: true,
  4. serializers: {
  5. res (reply) {
  6. // 默认
  7. return {
  8. statusCode: reply.statusCode
  9. }
  10. },
  11. req (request) {
  12. return {
  13. method: request.method,
  14. url: request.url,
  15. path: request.path,
  16. parameters: request.parameters,
  17. // 记录 header 可能会触犯隐私法律,例如 GDPR (译注:General Data Protection Regulation)。你应该用 "redact" 选项来移除敏感的字段。此外,验证数据也可能在日志中泄露。
  18. headers: request.headers
  19. };
  20. }
  21. }
  22. }
  23. });

:在 req 方法中,body 无法被序列化。因为请求是在创建子日志时就序列化了,而此时 body 尚未被解析。

以下是记录 req.body 的一个方法

  1. app.addHook('preHandler', function (req, reply, done) {
  2. if (req.body) {
  3. req.log.info({ body: req.body }, 'parsed body')
  4. }
  5. done()
  6. })

Pino 之外的日志工具会忽略该选项。

你还可以提供自定义的日志实例。将实例传入,取代配置选项即可。提供的示例必须实现 Pino 的接口,换句话说,便是拥有下列方法: infoerrordebugfatalwarntracechild

示例:

  1. const log = require('pino')({ level: 'info' })
  2. const fastify = require('fastify')({ logger: log })
  3. log.info('does not have request information')
  4. fastify.get('/', function (request, reply) {
  5. request.log.info('includes request information, but is the same logger instance as `log`')
  6. reply.send({ hello: 'world' })
  7. })

当前请求的日志实例在生命周期的各部分均可使用。

日志修订

Pino 支持低开销的日志修订,以隐藏特定内容。 举例来说,出于安全方面的考虑,我们也许想在 HTTP header 的日志中隐藏 Authorization 这一个 header:

  1. const fastify = Fastify({
  2. logger: {
  3. stream: stream,
  4. redact: ['req.headers.authorization'],
  5. level: 'info',
  6. serializers: {
  7. req (request) {
  8. return {
  9. method: request.method,
  10. url: request.url,
  11. headers: request.headers,
  12. hostname: request.hostname,
  13. remoteAddress: request.ip,
  14. remotePort: request.socket.remotePort
  15. }
  16. }
  17. }
  18. }
  19. })

更多信息请看 https://getpino.io/#/docs/redaction。