Only record stats right after migration

Change-Id: Idad9ee4c5b9697245e28d27dc576ad1e9e0556aa
This commit is contained in:
Joshua Hesketh 2015-04-30 13:01:16 +10:00
parent cbeb7a4fa7
commit 1c00340d88
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class LogParser(object):
name = m.group(1)
value = int(m.group(2))
if name in innodb_stats:
if name in innodb_stats and name not in migration_stats:
delta = value - innodb_stats[name]
if delta > 0:
migration_stats[name] = delta