Add a MySQL or MariaDB server as a monitored device and get query throughput, connections, replication and slow-query visibility.
Grant just enough to read status and process information, never use your application's own database credentials for monitoring.
CREATE USER 'zynty_ro'@'%' IDENTIFIED BY 'STRONG_PASSWORD'; GRANT PROCESS, REPLICATION CLIENT, SELECT ON performance_schema.* TO 'zynty_ro'@'%'; FLUSH PRIVILEGES;
Scope the host part of the user to your collector's address rather than a wildcard once you've confirmed connectivity.
RENAME USER 'zynty_ro'@'%' TO 'zynty_ro'@'10.20.0.50';
Choose MySQL as the database type, and enter the host, port, and the monitoring user's credentials.
Once connected, the device's dashboard shows queries per second, connection pool usage, replication lag (if applicable), and the slowest queries in the current window.