Add metrics to web endpoint

This commit is contained in:
Alex Auvolat
2022-02-22 15:21:06 +01:00
parent 2a5609b292
commit d9a35359bf
7 changed files with 168 additions and 84 deletions
+1 -2
View File
@@ -1,7 +1,7 @@
use std::time::Duration;
use opentelemetry::sdk::{
trace::{self, IdGenerator, Sampler},
trace::{self, IdGenerator},
Resource,
};
use opentelemetry::KeyValue;
@@ -24,7 +24,6 @@ pub fn init_tracing(export_to: &str, node_id: Uuid) -> Result<(), Error> {
.with_trace_config(
trace::config()
.with_id_generator(IdGenerator::default())
.with_sampler(Sampler::TraceIdRatioBased(0.01f64))
.with_resource(Resource::new(vec![
KeyValue::new("service.name", "garage"),
KeyValue::new("service.instance.id", node_id),