Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The majority of metrics sent by the agent are latency buckets. `linkerd-proxy` exports 25-bucket histograms: ``` 1, 2, 3, 4, 5, 10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 1000, 2000, 3000, 4000, 5000, 10000, 20000, 30000, 40000, 50000, ``` Decrease the number of time series the agent sends by decreasing latency buckets from 25 to 10: ``` 1, 5, 10, 50, 100, 500, 1000, 5000, 10000, 50000, ``` Also, modify the `buoyant-cloud-agent` scrape job to only opt-in specific metrics needed for debugging. Signed-off-by: Andrew Seigner <[email protected]>
- Loading branch information