Jul 1, 2013 #1 Sezaar ISP Joined Jul 1, 2013 Messages 1 Location KW Hello, Is there any tool that can provide a http response time and graph for that ?!
Jul 1, 2013 #2 feherke Programmer Joined Aug 5, 2002 Messages 9,541 Location RO 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] Click to expand... ( 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 Upvote 0 Downvote
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] Click to expand... ( 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