From: Simon J Mudd Date: Sun, 4 Jan 2015 00:40:27 +0000 (+0100) Subject: Bugfix: resetting values did not reset the timestamp for table_io_waits_summary_by_table X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=402f061cacacdf7b9de093c63c8a1e2c4e415c3d;p=pstop.git Bugfix: resetting values did not reset the timestamp for table_io_waits_summary_by_table --- diff --git a/p_s/table_io_waits_summary_by_table/table_io_waits_summary_by_table.go b/p_s/table_io_waits_summary_by_table/table_io_waits_summary_by_table.go index 8c9620b..00baecc 100644 --- a/p_s/table_io_waits_summary_by_table/table_io_waits_summary_by_table.go +++ b/p_s/table_io_waits_summary_by_table/table_io_waits_summary_by_table.go @@ -84,6 +84,7 @@ func (t *Table_io_waits_summary_by_table) make_results() { func (t *Table_io_waits_summary_by_table) SyncReferenceValues() { // lib.Logger.Println( "Table_io_waits_summary_by_table.SyncReferenceValues() BEGIN" ) + t.SetNow() t.initial = make(table_io_waits_summary_by_table_rows, len(t.current)) copy(t.initial, t.current)