How to I find how much storage a managed PostgreSQL database is using?
How do I find how close I am to using up all the storage in a a managed PostgreSQL database cluster? Are there alerts as I approach the maximum storage?
I can use select pg_size_pretty(pg_database_size('postgres'));
but I was hoping to see it in the web interface.
Thanks,
Dan