Only record stats right after migration
Change-Id: Idad9ee4c5b9697245e28d27dc576ad1e9e0556aa
This commit is contained in:
parent
cbeb7a4fa7
commit
1c00340d88
@ -116,7 +116,7 @@ class LogParser(object):
|
|||||||
name = m.group(1)
|
name = m.group(1)
|
||||||
value = int(m.group(2))
|
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]
|
delta = value - innodb_stats[name]
|
||||||
if delta > 0:
|
if delta > 0:
|
||||||
migration_stats[name] = delta
|
migration_stats[name] = delta
|
||||||
|
Loading…
x
Reference in New Issue
Block a user