Handle non-tls columns for mysql input (#4973)
This commit is contained in:
parent
91ecec71ea
commit
46b340c899
|
@ -995,6 +995,30 @@ func getColSlice(l int) ([]interface{}, error) {
|
||||||
&total_ssl_connections,
|
&total_ssl_connections,
|
||||||
&max_statement_time_exceeded,
|
&max_statement_time_exceeded,
|
||||||
}, nil
|
}, nil
|
||||||
|
case 21: // mysql 5.5
|
||||||
|
return []interface{}{
|
||||||
|
&user,
|
||||||
|
&total_connections,
|
||||||
|
&concurrent_connections,
|
||||||
|
&connected_time,
|
||||||
|
&busy_time,
|
||||||
|
&cpu_time,
|
||||||
|
&bytes_received,
|
||||||
|
&bytes_sent,
|
||||||
|
&binlog_bytes_written,
|
||||||
|
&rows_fetched,
|
||||||
|
&rows_updated,
|
||||||
|
&table_rows_read,
|
||||||
|
&select_commands,
|
||||||
|
&update_commands,
|
||||||
|
&other_commands,
|
||||||
|
&commit_transactions,
|
||||||
|
&rollback_transactions,
|
||||||
|
&denied_connections,
|
||||||
|
&lost_connections,
|
||||||
|
&access_denied,
|
||||||
|
&empty_queries,
|
||||||
|
}, nil
|
||||||
case 22: // percona
|
case 22: // percona
|
||||||
return []interface{}{
|
return []interface{}{
|
||||||
&user,
|
&user,
|
||||||
|
|
Loading…
Reference in New Issue