如何设置日志记录的当前时间(-zone)?

How to set current time (-zone) for Logging?

我用于记录 Microsoft.Extensions.Logging 和 NLog。日志被写入 Elasticsearch。当我使用 Kibana 查找我的日志时,我所有的日志都是在 UT 写入的,这意味着两个小时不同于我的本地时间 (-zone) MET。我想在 Kibana 上查看我的本地时间日志。 如何调整日志记录的时区?

我添加 NLog.config:

<nlog autoReload="true" throwExceptions="false"
  internalLogLevel="Info" internalLogFile="NLogError.log"
  xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <targets>
 <target name="Logfile" xsi:type="File"
  fileName="${basedir}dap.log"
layout="${longdate} ${level} ${callsite} -> ${message} ${exception:format=Message,StackTrace}"
  archiveFileName="${basedir}/archives/log.{#}.log"
  archiveEvery="Day"
  archiveNumbering="Rolling"
  maxArchiveFiles="14"
  keepFileOpen="false"
  />

  <target xsi:type="Network"
        name="CentralLog"
        newLine ="false"
        maxMessageSize="65000"
        connectionCacheSize="5"
        encoding="utf-8"
        keepConnection="false"
        maxQueueSize="100"
        address="tcp://myurl.org:5544"
        onOverflow="Split">
  <layout type="JsonLayout">
    <attribute name="machinename" layout="${machinename}" />
    <attribute name="level" layout="${level:upperCase=true}" />
    <attribute name="processname" layout="${processname}" />
    <attribute name="processid" layout="${processid}" />
    <attribute name="sendertimestamp" layout="${date:universalTime=true:format=yyyy-MM-ddTHH\:mm\:ss.fff}" />
    <attribute name="module" layout="dhp DataPickerApi ${logger}" />
    <attribute name="message" layout="${message}" />
    <attribute name="exception" layout="${exception}" />
    <attribute name="activityId" layout="${activityId}" />
  </layout>
 </target>    
</targets>

 <rules>
  <logger name="*" minlevel="Trace" writeTo="Logfile" />
  <logger name="*" minlevel="Trace" writeTo="CentralLog"/>
 </rules>
</nlog>

您可以在 Kibana 网页中设置时区。

设置-->高级---> DateFormat:tz

获取更多信息:https://www.elastic.co/guide/en/kibana/current/advanced-options.html

不使用universalTime=true? 所以不是这个:

<attribute name="sendertimestamp" 
           layout="${date:universalTime=true:format=yyyy-MM-ddTHH\:mm\:ss.fff}" />  

使用这个:

<attribute name="sendertimestamp" 
           layout="${date:format=yyyy-MM-ddTHH\:mm\:ss.fff}" />