Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement apache to record request response time log

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to implement apache to record request response time logs. The editor thought it was very practical, so I shared it with you as a reference. Let's follow the editor and have a look.

The specific steps are as follows:

Locate the apache configuration file

Netstat-nap | grep 8 processes find the corresponding port process 31114tcp6 0: 4430: * LISTEN 31114/httpdps auxf | grep 3111 processes find the path to the configuration file * .conf in the process command corresponding to apache, and modify the configuration file to the specified path, such as vim httpd.conf

Modify the VirtualHost under the specified port

.CustomLog "/ var/prof.log"[% a]% {F% T} t id=% {APIIndex} I time=%D (us) url=%U%q" Directive: CustomLog "/ var/prof.log"[% a]% {% F% T} t id=% {APIIndex} I time=%D (us) url=%U%q"

% D-official explanation: Time taken to process the request, in millis, the time to process the request in microseconds

% T-official explanation: Time taken to process the request, in seconds, the time in seconds to process the request

% {ms} T-official explanation: Time taken to commit the response, in millis, the time to submit the response in milliseconds

Restart apache after modification, and observe the log output data as follows:

[200.200.222.95] 2019-03-04 15:39:32 id=- time=100107 (us) url=/apps/secvisual/home/home/on_dev_ management [200.200.222.95] 2019-03-04 15:39:38 id=- time=106476 (us) url=/apps/secvisual/home/home/on_dev_ management [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 thank you for reading! On how to achieve apache recording request response time log is shared here, I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it and let more people see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report