Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make datastore metrics more representative of the actual underlying d…
…atastore the datastore metrics proxy was installed after various other proxies that try to help with datastore performance, namely caching and deduplication. If the proxy is installed after those, the metrics obtained do not reflect the actual latencies and requests to the datastore: - latencies will be lower thanks to caching and deduplication - actual datastore calls will be higher that they actually are because some requests may never hit the datastore Given how important is the access to the datastore for the latency and throughput of the application, this moves the proxy so it measures actual calls to the datastore by moving it around the proxy chain.
- Loading branch information