From: Simon J Mudd Date: Fri, 16 Jan 2015 18:42:45 +0000 (+0100) Subject: sort of working but statment stuff needs checking X-Git-Url: http://git.iain.cx/?p=pstop.git;a=commitdiff_plain;h=6d35dfbef03d201de80017ce8f10ec15744c2a2d sort of working but statment stuff needs checking --- diff --git a/p_s/setup_instruments/setup_instruments.go b/p_s/setup_instruments/setup_instruments.go index cf4e347..3b260aa 100644 --- a/p_s/setup_instruments/setup_instruments.go +++ b/p_s/setup_instruments/setup_instruments.go @@ -1,4 +1,4 @@ -// manage the configuration of performance_schema.setup_instruments +// manage the configuration of setup_instruments package setup_instruments import ( @@ -9,7 +9,7 @@ import ( ) // We only match on the error number -// Error 1142: UPDATE command denied to user +// Error 1142: UPDATE command denied to user 'cacti'@'10.164.132.182' for table 'setup_instruments' // Error 1290: The MySQL server is running with the --read-only option so it cannot execute this statement var EXPECTED_UPDATE_ERRORS = []string{ "Error 1142", @@ -33,24 +33,26 @@ type SetupInstruments struct { // Change settings to monitor stage/sql/% func (si *SetupInstruments) EnableStageMonitoring(dbh *sql.DB) { + lib.Logger.Println("EnableStageMonitoring") sql := "SELECT NAME, ENABLED, TIMED FROM setup_instruments WHERE NAME LIKE 'stage/sql/%' AND ( enabled <> 'YES' OR timed <> 'YES' )" - collecting := "Collecting p_s.setup_instruments stage/sql configuration settings" - updating := "Updating p_s.setup_instruments to allow stage/sql configuration" + collecting := "Collecting setup_instruments stage/sql configuration settings" + updating := "Updating setup_instruments configuration for: stage/sql" si.ConfigureSetupInstruments(dbh, sql, collecting, updating) } // Change settings to monitor wait/synch/mutex/% func (si *SetupInstruments) EnableMutexMonitoring(dbh *sql.DB) { + lib.Logger.Println("EnableMutexMonitoring") sql := "SELECT NAME, ENABLED, TIMED FROM setup_instruments WHERE NAME LIKE 'wait/synch/mutex/%' AND ( enabled <> 'YES' OR timed <> 'YES' )" - collecting := "Collecting p_s.setup_instruments wait/synch/mutex configuration settings" - updating := "Updating p_s.setup_instruments to allow wait/synch/mutex configuration" + collecting := "Collecting setup_instruments wait/synch/mutex configuration settings" + updating := "Updating setup_instruments configuration for: wait/synch/mutex" si.ConfigureSetupInstruments(dbh, sql, collecting, updating) } // generic routine (now) to update some rows in setup instruments -func (si *SetupInstruments) ConfigureSetupInstruments(dbh *sql.DB, sql string, collecting, updating string) { +func (si *SetupInstruments) ConfigureSetupInstruments(dbh *sql.DB, select_sql string, collecting, updating string) { // setup the old values in case they're not set if si.rows == nil { si.rows = make([]table_row, 0, 500) @@ -58,7 +60,7 @@ func (si *SetupInstruments) ConfigureSetupInstruments(dbh *sql.DB, sql string, c lib.Logger.Println(collecting) - rows, err := dbh.Query(sql) + rows, err := dbh.Query(select_sql) if err != nil { log.Fatal(err) } @@ -85,15 +87,16 @@ func (si *SetupInstruments) ConfigureSetupInstruments(dbh *sql.DB, sql string, c // update the rows which need to be set - do multiple updates but I don't care lib.Logger.Println(updating) + lib.Logger.Println("- about to try to update", len(si.rows), "row(s)" ) count = 0 - update_sql := "UPDATE setup_instruments SET enabled = ?, TIMED = ? WHERE NAME = ?" - stmt, err := dbh.Prepare( update_sql ) - if err != nil { - log.Fatal(err) - } for i := range si.rows { - if _, err := stmt.Exec(update_sql, "YES", "YES", si.rows[i].NAME); err == nil { + lib.Logger.Println("- changing row:", si.rows[i].NAME ) + sql := "UPDATE setup_instruments SET enabled = 'YES', TIMED = 'YES' WHERE NAME = '" + si.rows[i].NAME + "'" + lib.Logger.Println("exec statement:", sql ) + if res, err := dbh.Exec(sql); err == nil { si.update_succeeded = true + c, _ := res.RowsAffected() + count += int(c) } else { found_expected := false for i := range EXPECTED_UPDATE_ERRORS { @@ -106,9 +109,9 @@ func (si *SetupInstruments) ConfigureSetupInstruments(dbh *sql.DB, sql string, c log.Fatal(err) } lib.Logger.Println("Insufficient privileges to UPDATE setup_instruments: " + err.Error()) + lib.Logger.Println("Not attempting further updates") break } - count++ } if si.update_succeeded { lib.Logger.Println(count, "rows changed in p_s.setup_instruments") @@ -126,17 +129,18 @@ func (si *SetupInstruments) RestoreConfiguration(dbh *sql.DB) { } // update the rows which need to be set - do multiple updates but I don't care - count := 0 update_sql := "UPDATE setup_instruments SET enabled = ?, TIMED = ? WHERE NAME = ?" stmt, err := dbh.Prepare( update_sql ) if err != nil { log.Fatal(err) } + count := 0 for i := range si.rows { - if _, err := stmt.Exec(update_sql, si.rows[i].ENABLED, si.rows[i].TIMED, si.rows[i].NAME ); err != nil { + if _, err := stmt.Exec(si.rows[i].ENABLED, si.rows[i].TIMED, si.rows[i].NAME ); err != nil { log.Fatal(err) } count++ } + stmt.Close() lib.Logger.Println(count, "rows changed in p_s.setup_instruments") }