Forum Discussion
JD1
Altostratus
Mar 05, 2014iRule to detect the URI for the hangup process.
Hello,
I'm trying to use an LTM iRule to detect for when the /vdesk/hangup.php3 is called as part of an APM policy, so that I can do something with the logout prior to the completion of the APM pol...
Kevin_Stewart
Employee
Mar 05, 2014This is one of those URIs that APM hides. It can be accessed by disabling restrict_irule_events:
when CLIENT_ACCEPTED {
ACCESS::restrict_irule_events disable
}
when HTTP_REQUEST {
if { [HTTP::path] starts_with "/vdesk/hangup.php3" } {
log local0. "Detected logout process trigger"
}
}