Commit 880bafc9 authored by Lasse Karstensen's avatar Lasse Karstensen

Correct timeout matching examples.

parent 5930380e
...@@ -222,10 +222,14 @@ QUERY EXPRESSION EXAMPLES ...@@ -222,10 +222,14 @@ QUERY EXPRESSION EXAMPLES
not ReqHeader:cookie not ReqHeader:cookie
* Client request where internal handling took more than 800ms.::
Timestamp:Process[2] > 0.8
* Transaction group contains a request user-agent header that contains * Transaction group contains a request user-agent header that contains
"iPod" and the request delivery time exceeds 1 second :: "iPod" and the request delivery time exceeds 1 second ::
ReqHeader:user-agent ~ "iPod" and ReqEnd[5] > 1. ReqHeader:user-agent ~ "iPod" and Timestamp:Resp[2] > 1.
* Transaction group contains a backend response status larger than or * Transaction group contains a backend response status larger than or
equal to 500 :: equal to 500 ::
...@@ -240,7 +244,7 @@ QUERY EXPRESSION EXAMPLES ...@@ -240,7 +244,7 @@ QUERY EXPRESSION EXAMPLES
* Transactions that have had backend failures or long delivery time on * Transactions that have had backend failures or long delivery time on
their ESI subrequests. (Assumes request grouping mode). :: their ESI subrequests. (Assumes request grouping mode). ::
BerespStatus >= 500 or {2+}ReqEnd[5] > 1. BerespStatus >= 500 or {2+}Timestamp:Process[2] > 1.
HISTORY HISTORY
======= =======
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment