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
The behaviour was triggered through miss configured file system permission. The query used to gather connection metrics from process list would simply return an error instead of a result.
mysql> SELECT user, sum(1) FROM INFORMATION_SCHEMA.PROCESSLIST GROUP BY user;
ERROR 1 (HY000): Can't create/write to file '/tmp/#sql_418_0.MYI' (Errcode: 13 - Permission denied)
For the SHOW GLOBAL STATUS query there is an error detection after the query. However for the GatherProcessList and GatherUserStatistics this is missing and the non existent rows are iterated directly leading to a crash.
Upon start of telegraf it imminently exited with a segmentation violation.
The behaviour was triggered through miss configured file system permission. The query used to gather connection metrics from process list would simply return an error instead of a result.
For the
SHOW GLOBAL STATUS
query there is an error detection after the query. However for theGatherProcessList
andGatherUserStatistics
this is missing and the non existent rows are iterated directly leading to a crash.Version Information
The text was updated successfully, but these errors were encountered: