我们正在将NLog集成用于asp.net核心来管理我们的日志。我们需要生成一个包含响应时间(持续时间)的JSON日志。
以下代码:
logger.LogInformation("Duration {duration}", 122);
具有以下配置:
<target name="aws" type="Debugger">
<layout type="JsonLayout">
<attribute name="level" layout="${level}" />
<attribute name="msg" layout="${message}" />
<attribute name="err" layout="${exception:format=tostring}" />
<attribute name="meta" encode="false">
<layout type="JsonLayout">
<attribute name="requestId" layout="${aspnet-traceidentifier}" />
<attribute name="user" layout="${aspnet-user-identity}" />
<attribute name="agent" layout="${aspnet-request-useragent}" />
<attribute name="method" layout="${aspnet-request-method}" />
<attribute name="url" layout="${aspnet-request-url:IncludeHost=true:IncludePort=true:IncludeQueryString=true}" />
<attribute name="logger" layout="${logger}" />
<attribute name="duration" layout="${event-properties:duration}" />
</layout>
</attribute>
</layout>
</target>
始终生成如下所示的输出:
{
"level": "Info",
"msg": "Duration 122",
"meta": {
"requestId": "0HLKTC2E2B3KL:00000002",
"agent": "PostmanRuntime\/7.6.0",
"method": "POST",
"url": "http:\/\/localhost:20000\/api\/v1\/oauth\/token",
"logger": "TEC.CoreApi.Application.Features.Authentication.OAuthController",
"duration": "122"
}
}
如您所见,持续时间变成了字符串,这使我们无法使用日志解析器(CloudWatch Logs)。我绝对需要将持续时间作为数值来获取。
关于如何解决此问题的任何想法吗?
Thx 塞巴斯蒂安
答案 0 :(得分:2)
尝试更换
<attribute name="duration" layout="${event-properties:duration}"/>
与
<attribute name="duration" layout="${event-properties:duration}" encode="false"/>