如何在Node.js中的Elasticsearch日志上设置时区?

时间:2018-09-07 21:44:14

标签: node.js elasticsearch logging timezone

我正在使用elasticsearch npm模块。我可以将错误日志发送到特定文件:

var client = new elasticsearch.Client({
  //...
  apiVersion: "5.0",
  log: {
    type: 'file', 
    level: 'error', 
    path: 'path/to/file.log'
  }
});

但是记录的消息带有ISO 8601 UTC中的时间戳:

ERROR: 2018-09-07T20:20:10Z
  Error: Request error, retrying
  HEAD http://localhost:9200/ => connect ECONNREFUSED 127.0.0.1:9200

我找不到config option的时区logging

0 个答案:

没有答案