Hello everyone!
It is possible to monitor the size of a specific bank mysql?
For example, we would like to monitor database growth "zabbix".
Currently we see the code below.
SELECT table_schema "Database Name", SUM(data_length+index_length)/1024/1024
"Database Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;
Can you help me?
Best regards,
Breno Padovan
It is possible to monitor the size of a specific bank mysql?
For example, we would like to monitor database growth "zabbix".
Currently we see the code below.
SELECT table_schema "Database Name", SUM(data_length+index_length)/1024/1024
"Database Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;
Can you help me?
Best regards,
Breno Padovan
Comment