HTTP_CLASS_SELECTED

Description

An iRule event triggered when an HTTP request matches an HTTP class. You can use the HTTP__class command to extract the matching class name.

Examples

when HTTP_CLASS_SELECTED {
  if{ [HTTP::class] eq $myClass } {
    pool http
  }
}