summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/tools/wtstats/wtstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/tools/wtstats/wtstats.py')
-rwxr-xr-xsrc/third_party/wiredtiger/tools/wtstats/wtstats.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/tools/wtstats/wtstats.py b/src/third_party/wiredtiger/tools/wtstats/wtstats.py
index 3549031c30f..bf5557d12f4 100755
--- a/src/third_party/wiredtiger/tools/wtstats/wtstats.py
+++ b/src/third_party/wiredtiger/tools/wtstats/wtstats.py
@@ -115,6 +115,9 @@ def parse_wtstats_file(file, result):
# Parse file
for line in open(file, 'rU'):
month, day, time, v, title = line.strip('\n').split(" ", 4)
+ # The colon in the URI confuses parsing, strip it out.
+ if "cache_walk" in title:
+ title = title.replace("file:", "", 1)
result[title].append((month + " " + day + " " + time, v))