Log4j2 JSON Layout: add custom date field in UTC(Log4j2 JSON布局:在UTC中添加自定义日期字段)
问题描述
Log4j2支持JSON Layout,其中我在log4j2.xml中添加了一个额外的定制字段:
<JsonLayout compact="true" eventEol="true" stacktraceAsString="true">
<KeyValuePair key="@timestamp" value="$${date:yyyy-MM-dd'T'HH:mm:ss.SSS'Z'}"/>
</JsonLayout>
一般来说,一切正常,但此日志由Filebeats处理,并假定该日期以UTC表示。
所有日志条目都具有当地时区的日期值。
是否可以以UTC格式输出日期?
推荐答案
您可以create your own lookup,因为我相信您已经知道,KeyValuePair
支持根据manual page you shared在其值属性中进行查找。
以下是示例代码:
首先,查找类:
package utcTime;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.lookup.StrLookup;
@Plugin(name = "UtcMillis", category = "Lookup")
public class UtcMillisLookup implements StrLookup{
/**
* Lookup the value for the key.
* @param key the key to be looked up, may be null
* @return The value for the key.
*/
public String lookup(String key) {
return String.valueOf(getUTCMillis());
}
/**
* @return current UTC time in milliseconds
*/
private long getUTCMillis(){
return System.currentTimeMillis();
}
/**
* Lookup the value for the key using the data in the LogEvent.
* @param event The current LogEvent.
* @param key the key to be looked up, may be null
* @return The value associated with the key.
*/
public String lookup(LogEvent event, String key) {
return String.valueOf(getUTCMillis());
}
}
接下来,log4j2.xml配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<JsonLayout compact="true" eventEol="true" stacktraceAsString="true">
<KeyValuePair key="@timestamp" value="$${UtcMillis:}"/>
</JsonLayout>
</Console>
</Appenders>
<Loggers>
<Root level="debug">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
请注意,查找没有参数/键,因此您可以将该部分保留为空/空白,但您仍然必须使用冒号(:
),这就是您在上面的配置中看到$${UtcMillis:}
的原因。
最后,生成日志事件的简单类:
package utcTime;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class MainUtcLookup {
private static final Logger log = LogManager.getLogger();
public static void main(String[] args){
log.info("Here's some info!");
}
}
以下是示例输出:
{
"thread":"main",
"level":"INFO",
"loggerName":"utcTime.MainUtcLookup",
"message":"Here's some info!",
"endOfBatch":false,
"loggerFqcn":"org.apache.logging.log4j.spi.AbstractLogger",
"instant":{
"epochSecond":1534642997,
"nanoOfSecond":556000000
},
"threadId":1,
"threadPriority":5,
"@timestamp":"1534642997558"
}
我不打算深入研究您可以获得以UTC毫秒为单位的当前时间的所有不同方法的细节,因为我相信您可以自己研究这一细节。我只是想提供一个示例,说明如何实现将毫秒时间戳添加到log4j2JSONLayout
的主要目标。
希望这能有所帮助!
这篇关于Log4j2 JSON布局:在UTC中添加自定义日期字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Log4j2 JSON布局:在UTC中添加自定义日期字段
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01