• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved Where can I find server global statistics?

lola

New Pleskian
Hi there,

I use plesk 12.5 on a linux machine. Is there any possibility (option in plesk) where I can check the used database disk space? I mean not the used database disk space of each abonnement. I mean the server global diskspace. I only find a note that shows the hole used disk space (inkl. mail, web, database, logs and so on).
 
You can use something like this:

mysql> SELECT table_schema "Data Base Name", sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB" FROM information_schema.TABLES GROUP BY table_schema;
+-------------------------+----------------------+
| Data Base Name | Data Base Size in MB |
+-------------------------+----------------------+
| apsc | 0.84375000 |
| horde | 5.81250000 |
| information_schema | 0.00781250 |
| mysql | 0.62958336 |
| phpmyadmin_hq02okHSZJg5 | 0.04296875 |
| psa | 6.81250000 |
| roundcubemail | 0.46875000 |
| sitebuilder5 | 0.74562263 |
| wordpress_2 | 0.68750000 |
+-------------------------+----------------------+
9 rows in set (0.28 sec)
 
Back
Top