gpt4 book ai didi

apache httpd LogFormat 不支持 strftime 格式

转载 作者:行者123 更新时间:2023-12-03 21:26:11 28 4
gpt4 key购买 nike

我的 httpd 日志中需要一个 8601 时间戳,但 httpd 似乎没有遵守其时间格式契约(Contract)。我正在使用 apache httpd 2.4.6。

我有一个日志配置如下:

ErrorLogFormat "{\
\"level\": \"%l\",\
...
\"timestamp\":\"%{%Y-%m-%dT%H:%M:%S%z}t\"\
}"
ErrorLog /dev/stderr

LogLevel info
LogFormat "{\
\"logger\": \"common\",\
...
\"timestamp\":\"%{%Y-%m-%dT%H:%M:%S%z}t\",\
}" combined

CustomLog /dev/stdout combined

如您所见,这是一个紧凑的 json 布局(是的,可能没有完全转义)。

观察时间戳字段。当我登录时,日志消息如下所示:
{"level": "notice", ... ,"timestamp":"Wed Dec 27 19:16:05 2017"}

httpd 不遵守或正确格式化我指定的时间戳。文档 https://httpd.apache.org/docs/current/mod/mod_log_config.html#formats建议这应该有效。

即使我将其简化为单一格式,例如 %{%T}t ,我得到了上面的完整日期字符串。
%{%T}t ==> "Wed Dec 27 19:24:50 2017"
有趣的是,
%{%usec_frac}t ==> "2017-12-27 19:24:22.443786"
所以他们的自定义 token 似乎有效。我只想要一张 iso 8601 友好邮票!

有任何想法吗? here's a runnable example with docker .谢谢!

strftime 引用: https://linux.die.net/man/3/strftime

最佳答案

LogFormat "%h %l %u %{%FT%T%z}t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
发出
127.0.0.1 - - 2021-03-09T19:07:07+0000 "GET / HTTP/1.1" 200 28 "-" "curl/7.61.1"

关于apache httpd LogFormat 不支持 strftime 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47997641/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com