作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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
{"level": "notice", ... ,"timestamp":"Wed Dec 27 19:16:05 2017"}
%{%T}t
,我得到了上面的完整日期字符串。
%{%T}t
==>
"Wed Dec 27 19:24:50 2017"
%{%usec_frac}t
==>
"2017-12-27 19:24:22.443786"
最佳答案
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/
我需要在 Apache 的日志中对 IP 应用掩码。 例如,我有这个日志: 192.168.234.111 - - [18/Oct/2013:16:29:40 +0200] “获取........”
我的 httpd 日志中需要一个 8601 时间戳,但 httpd 似乎没有遵守其时间格式契约(Contract)。我正在使用 apache httpd 2.4.6。 我有一个日志配置如下: Erro
我是一名优秀的程序员,十分优秀!