^start of line
\d{4}a digit, repeated exactly 4 times
-the literal - (4510 / 558 / 2D16)
\d{2}a digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a digit, repeated exactly 2 times
the literal (3210 / 408 / 2016)
\d{2}a digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a digit, repeated exactly 2 times
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\(the literal ( (4010 / 508 / 2816)
\S+any non-whitespace character, repeated at least once
\)the literal ) (4110 / 518 / 2916)
- flush done sketch={flushed=the literal text - flush done sketch={flushed= (case sensitive) \d+a digit, repeated at least once
total=the literal text total= (case sensitive) \d+a digit, repeated at least once
pruned=the literal text pruned= (case sensitive) \d+a digit, repeated at least once
} num_org_metric=the literal text } num_org_metric= (case sensitive) \d+a digit, repeated at least once
since_ms=the literal text since_ms= (case sensitive) \d+a digit, repeated at least once
ms dt=the literal text ms dt= (case sensitive) ?matches at most one character from the set below:
-the literal - (4510 / 558 / 2D16)
+the literal + (4310 / 538 / 2B16)
Group 5([0-9]*(\.[0-9]*)?[a-z]+)+ +repeats the group contents below at least once:
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
?repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string