Request method is

Matches when the request method is one of the selected methods.

This condition inspects the HTTP method of the incoming request and returns true if it matches any of the methods in the selected list.

Configuration

  • Available request methods: A list of standard HTTP methods available for selection, including CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, and TRACE.
  • Selected methods: The specific methods that trigger the condition. The condition returns true if the request uses any method present in this list.

Measurement

The condition extracts the method name from the incoming request and performs a lookup against the Selected methods list. It returns true as soon as a match is found. If the request method is not in the list, or if the request context is unavailable during evaluation, the condition returns false.


Last modified March 5, 2026