You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jun 18 15:51:13 mysql-test mysqld_exporter[30644]: ts=2024-06-18T06:51:13.643Z caller=exporter.go:173 level=error msg="Error from scraper" scraper=perf_schema.eventsstatementssum target=/tmp/mysql.sock err="sql: Scan error on column index 19, name \"SUM_SUM_TIMER_WAIT\": converting driver.Value type []uint8 (\"36463827771516430384\") to a uint64: value out of range"
Jun 18 15:51:30 mysql-test mysqld_exporter[30644]: ts=2024-06-18T06:51:30.535Z caller=exporter.go:173 level=error msg="Error from scraper" scraper=perf_schema.eventsstatementssum target=/tmp/mysql.sock err="sql: Scan error on column index 19, name \"SUM_SUM_TIMER_WAIT\": converting driver.Value type []uint8 (\"36464125564353364384\") to a uint64: value out of range"
Jun 18 15:51:44 mysql-test mysqld_exporter[30644]: ts=2024-06-18T06:51:44.244Z caller=exporter.go:173 level=error msg="Error from scraper" scraper=perf_schema.eventsstatementssum target=/tmp/mysql.sock err="sql: Scan error on column index 19, name \"SUM_SUM_TIMER_WAIT\": converting driver.Value type []uint8 (\"36464265664751892384\") to a uint64: value out of range"
Jun 18 15:51:59 mysql-test mysqld_exporter[30644]: ts=2024-06-18T06:51:59.121Z caller=exporter.go:173 level=error msg="Error from scraper" scraper=perf_schema.eventsstatementssum target=/tmp/mysql.sock err="sql: Scan error on column index 19, name \"SUM_SUM_TIMER_WAIT\": converting driver.Value type []uint8 (\"36464361035532091384\") to a uint64: value out of range"
Host operating system: output of
uname -a
mysqld_exporter version: output of
mysqld_exporter --version
MySQL server version
mysqld_exporter command line flags
Error output
SELECT performance_schema.events_statements_summary_by_digest
reason
In my case the
SUM_SUM_TIMER_WAIT
is bigger than uint64(18446744073709551615), so i got an error.WANT
change uint64 to uint128, maybe it's can fix it. ( I did't try
or something other way.
The text was updated successfully, but these errors were encountered: