Forum Discussion
Simon_Wright_85
Nimbostratus
Oct 16, 2007Ability to view currently running requests
Hi All
For the past few years we have used a tool called IISTracer to look at the currently running requests on our webservers. It has been very usefull for tracking down problems but due t...
Oct 16, 2007
The easiest way to do this is to use the log statement to send the data you want to the system log and then analyze it later. The downside to this is that there is only a finite amount of disk storage on the BIG-IP and the log system wasn't designed to be a database. If you regularly clean out the logs, then this shouldn't be that big an issue.
Something like this should work for you.
when HTTP_REQUEST {
set uri [HTTP::uri]
set start [clock milliseconds]
}
when HTTP_RESPONSE {
log local0. "URI: $uri; Time: [expr [clock milliseconds] - $start] ms."
}The output will be put in the /var/log/LTM file on the BIG-IP.
Good luck!
-Joe
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects