I downloaded a VM image of a web application that uses MySQL.
How can I monitor it's space consumption and know when additional space must be added?
|
|
I downloaded a VM image of a web application that uses MySQL. How can I monitor it's space consumption and know when additional space must be added?
|
||
|
|
|
|
If only MySQL is available, use the SHOW TABLE STATUS command, and look at the Data_length column for each table, which is in bytes. If you have other languages available on the machine, a script in any of them that runs regularly (cron), checks disk free space or size of database directory, and updates you over e-mail or otherwise. There are far too many options to suggest a particular solution -- it depends on your situation. |
||
|
|
|
|
For MyISAM tables, I usually check the size of the /var/lib/mysql/mydatabasename/ directory. InnoDB tables use monolithic files, so you have to use SHOW TABLE STATUS. |
||
|
|