pub fn create_latency_histogram() -> Histogram<u64>Expand description
Creates a new latency histogram with a standardized range and precision.
§Configuration
- Range: 1ms to 10,000ms (10 seconds).
- Precision: 2 significant figures (guarantees $\le 1%$ error).
§Returns
A configured Histogram<u64>.
§Panics
Panics if the internal bounds are invalid (though 1, 10000, 2 are verified constants).