diff options
Diffstat (limited to 'src/admin')
-rw-r--r-- | src/admin/metrics.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/admin/metrics.rs b/src/admin/metrics.rs index 547ee4c8..ccc26d26 100644 --- a/src/admin/metrics.rs +++ b/src/admin/metrics.rs @@ -76,7 +76,6 @@ struct AdminServerMetrics { http_counter: BoundCounter<u64>, http_body_gauge: BoundValueRecorder<u64>, http_req_histogram: BoundValueRecorder<f64>, - bucket_v2_merkle_updater_todo_queue_length: BoundValueRecorder<f64>, } impl AdminServer { @@ -102,11 +101,6 @@ impl AdminServer { .with_description("The HTTP request latencies in seconds.") .init() .bind(HANDLER_ALL.as_ref()), - bucket_v2_merkle_updater_todo_queue_length: meter - .f64_value_recorder("bucket_v2.merkle_updater.todo_queue_length") - .with_description("Bucket merkle updater TODO queue length.") - .init() - .bind(HANDLER_ALL.as_ref()), }, } } |