More precise histograms
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
9bd922adf9
commit
731b59a41f
1 changed files with 10 additions and 1 deletions
|
@ -21,7 +21,16 @@ pub struct MetricsServer {
|
||||||
|
|
||||||
impl MetricsServer {
|
impl MetricsServer {
|
||||||
pub fn init(bind_addr: Option<SocketAddr>) -> MetricsServer {
|
pub fn init(bind_addr: Option<SocketAddr>) -> MetricsServer {
|
||||||
let exporter = opentelemetry_prometheus::exporter().init();
|
let exporter = opentelemetry_prometheus::exporter()
|
||||||
|
.with_default_summary_quantiles(vec![0.25, 0.5, 0.75, 0.9, 0.95, 0.99])
|
||||||
|
.with_default_histogram_boundaries(vec![
|
||||||
|
0.001, 0.0015, 0.002, 0.003, 0.005, 0.007,
|
||||||
|
0.01, 0.015, 0.02, 0.03, 0.05, 0.07,
|
||||||
|
0.1, 0.15, 0.2, 0.3, 0.5, 0.7,
|
||||||
|
1., 1.5, 2., 3., 5., 7.,
|
||||||
|
10., 15., 20., 30., 40., 50., 60., 70., 100.
|
||||||
|
])
|
||||||
|
.init();
|
||||||
Self {
|
Self {
|
||||||
bind_addr,
|
bind_addr,
|
||||||
exporter,
|
exporter,
|
||||||
|
|
Loading…
Reference in a new issue