| Check | Why It Matters |
| Where is the application running? | Application-to-database distance directly affects latency. |
| Where are the tablet leaders? | Strong reads and writes go through the leader. |
| Is the query using a secondary index? | A secondary index lookup may require both an index read and a table read. |
| Are RocksDB block cache hits high? | High cache hits with high latency often points away from disk and toward network hops. |
| Is traffic routed to the intended region? | Wrong-region routing can add latency before the database does any work. |