diff --git a/collector/info_schema_processlist.go b/collector/info_schema_processlist.go index 80d2c493..fbe33e44 100755 --- a/collector/info_schema_processlist.go +++ b/collector/info_schema_processlist.go @@ -38,7 +38,7 @@ const infoSchemaProcesslistQuery = ` FROM information_schema.processlist WHERE ID != connection_id() AND TIME >= %d - GROUP BY user, SUBSTRING_INDEX(host, ':', 1), command, state + GROUP BY user, host, command, state ` // Tunable flags.