Group timestamp(?P<timestamp>[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{6}Z) {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
-the literal - (4510 / 558 / 2D16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
-the literal - (4510 / 558 / 2D16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
Tthe literal T (8410 / 1248 / 5416) (case sensitive)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
.any character (except for line terminators)
{6}matches exactly 6 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
Zthe literal Z (9010 / 1328 / 5A16) (case sensitive)
?optionally matches the literal (3210 / 408 / 2016)
?optionally matches the literal (16010 / 2408 / A016)
?optionally matches the literal (16010 / 2408 / A016)
?optionally matches the literal (16010 / 2408 / A016)
?optionally matches the literal (16010 / 2408 / A016)
?optionally matches the literal (16010 / 2408 / A016)
Group connID(?P<connID>[0-9]+) +matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
the literal (3210 / 408 / 2016)
Group name(?P<name>[a-zA-Z]+) +matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
A-Zone character from A (6510) to Z (9010) (case sensitive)
the literal (3210 / 408 / 2016)
Group sqltext(?P<sqltext>[^\n]+) Negated Character Class[^\n]+ +matches at least one character outside the set below:
\na line-feed (newline) character (ASCII 10)
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