Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTTP response time

Status
Not open for further replies.

Sezaar

ISP
Jul 1, 2013
1
KW
Hello,


Is there any tool that can provide a http response time and graph for that ?!
 
Hi

To get the times, you will need to configure a custom log file which to include either [tt]%D[/tt] or [tt]%T[/tt] :
mod_log_config said:
[pre]%D The time taken to serve the request, in microseconds.
%T The time taken to serve the request, in seconds.[/pre]
( Apache | Modules | mod_log_config | Custom Log Formats )

Such configuration would look somehow like this :
Code:
LogFormat "%h %t \"%r\" %s %D" timelog
CustomLog /var/log/httpd/timelog.txt timelog

To get the graph from that, no idea. ( Personally I would put together something "manually". )


Feherke.
feherke.github.io
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top