Forum Discussion
Amine_Kadimi
MVP
If the pool member never responds to the HTTP requests sent from F5 over an open TCP connection, the F5 will ultimately close this connection*, so you can try something like:
set http_data_received 0
when HTTP_RESPONSE {
set http_data_received 1
}
when SERVER_CLOSED {
if (not (http_data_received)) {
#splunk logic here
}
}
* not sure what is the behavior for keep-alive connections
BenJ
Apr 12, 2024Nimbostratus
Thank you Amine. Apologies for the belated reply. I did try to respond as soon as I received your message but was unable to login to the community forum for some reason.