首页 > 编程知识 正文

Apache 记录请求响应时间日志,记录时间日志要注意

时间:2023-05-06 05:24:18 阅读:228592 作者:4004

找到apache配置文件 netstat -nap | grep 80# 找到对应端口进程 31114tcp6 0 0 :::4430 :::* LISTEN 31114/httpdps auxf | grep 31114# 找到对应apache的进程命令中的配置文件*.conf的路径,到指定路径修改配置文件,例如vim httpd.conf 修改指定端口下的VirtualHost <VirtualHost 80>.......CustomLog "/var/prof.log" "[%a]%{%F %T}t id=%{APIIndex}i time=%D(us) url=%U%q"</VirtualHost>指令: CustomLog "/var/prof.log" "[%a]%{%F %T}t id=%{APIIndex}i time=%D(us) url=%U%q"

%D - 官方解释:Time taken to process the request, in millis,处理请求的时间,以微秒为单位
%T - 官方解释:Time taken to process the request, in seconds,处理请求的时间,以秒为单位
%{ms}T - 官方解释:Time taken to commit the response, in millis,提交响应的时间,以毫秒为单位

修改后重启apache,观察日志输出数据如下: [200.200.222.95]2019-03-04 15:39:32 id=- time=100107(us) url=/apps/secvisual/home/home/on_dev_manage[200.200.222.95]2019-03-04 15:39:38 id=- time=106476(us) url=/apps/secvisual/home/home/on_dev_manage[200.200.222.95]2019-03-04 15:39:43 id=- time=101263(us) url=/apps/secvisual/home/home/on_dev_manage[200.200.222.95]2019-03-04 15:39:48 id=- time=101333(us) url=/apps/secvisual/home/home/on_dev_manage

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。