Documentation regarding exceeding sizing limits

Hello,
I am trying to find documentation regarding Neo4j Aura when the disk space for the data exceeds the database size. Mores specifically, I am trying to see if there are any warning systems we use where which can prevent us from going over the specified database size.

Thank you,
Zain

You can check with - but not sure if the calculations are only for the totalStoreSize.

CALL apoc.monitor.store()

It sounds like you are asking for observability. From the neo4j aura console you can access plenty of metrics Monitoring - Neo4j Aura you can also pull these metrics into your monitoring system Customer Metrics Integration (CMI) - Neo4j Aura

Thank you for the suggestions. I was already looking the monitoring metrics and apoc procedures, and this confirms that I had the correct starting point. I was hoping for something one step further. If I invoke a query that writes data to the graph, could I receive some error message letting me know that executing the query will exceed the disk space for the database.

The current strategy I am thinking of enforcing is to prevent writing to the database if the size has reached %95 of disk capacity.