Commit 856c212a authored by Rafael Monnerat's avatar Rafael Monnerat

networkbench: fix regex, average comes before max.

parent 09612736
...@@ -20,8 +20,8 @@ botname = socket.gethostname() ...@@ -20,8 +20,8 @@ botname = socket.gethostname()
ping_re = re.compile( ping_re = re.compile(
".*" ".*"
"(?P<min>[\d\.]+)/" "(?P<min>[\d\.]+)/"
"(?P<max>[\d\.]+)/"
"(?P<avg>[\d\.]+)/" "(?P<avg>[\d\.]+)/"
"(?P<max>[\d\.]+)/"
"(?P<mdev>[\d\.]+) ms" "(?P<mdev>[\d\.]+) ms"
) )
......
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