turn on suggestions
![]() Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
|
Content Inspection
HTTP
This script analyzes incoming requests and selects real server based on url hashing.
Contact us for our detailed reporting
or
Report your own performance estimate
No special configuration is required
Events | API |
HTTP_REQUEST | OS_HTTP_REQUEST::url OS_SLB::persist |
# Purpose: Check url and based on url hashing selects real server use OS_SLB; use OS_HTTP_REQUEST; ############################################# # # HTTP REQUEST EVENTS # ############################################# sub HTTP_REQUEST { # Get the URL from the request my $client_url = OS_HTTP_REQUEST::url; # print "\n\nClient url is - $client_url\n\n"; # sever selection based on url hash OS_SLB::persist(“hash-to-bucket”, “$client_url”); } |