Hello there,
I'm using Zabbix 5.0 LTS with the Agent2 and the MySQL plugin to monitor a MariaDB 10.3 server.
One request I have is to monitor which processes are active, not only the numbers of threads, but the actual list of processes that are returned by the SHOW PROCESSLIST query, with their state and users.
Would it be possible to add an item that make this information available in JSON format through the agent ? This would make possible to generate graphs that shows the numbers of threads per user
As an alternative, add an item that allows to execute a custom query like available in the Oracle plugin
I'm using Zabbix 5.0 LTS with the Agent2 and the MySQL plugin to monitor a MariaDB 10.3 server.
One request I have is to monitor which processes are active, not only the numbers of threads, but the actual list of processes that are returned by the SHOW PROCESSLIST query, with their state and users.
Would it be possible to add an item that make this information available in JSON format through the agent ? This would make possible to generate graphs that shows the numbers of threads per user
As an alternative, add an item that allows to execute a custom query like available in the Oracle plugin
Code:
mysql.custom.query[<connString>,<user>,<password>,<database>, queryName, <args…>]
Comment