Regular expressions¶
Your configuration can utilize the re2 regular expression engine to search unstructured text.
Given an HTTP request that returns the following
Status: ok
The following regular expression
capture:
regex: '^Status: (?P<status>[a-zA-Z]+)$'
as: [ status ]
would capture the string
ok
in the status
variable.