Skip to content

Commit

Permalink
Fix metastore metrics namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Jan 2, 2024
1 parent 2569065 commit c3be316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickwit/quickwit-metastore/src/metastore/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use crate::{Split, SplitMetadata, SplitState};
const STREAM_SPLITS_CHUNK_SIZE: usize = 1_000;

static METASTORE_METRICS_LAYER: Lazy<PrometheusMetricsLayer<1>> =
Lazy::new(|| PrometheusMetricsLayer::new("metastore", ["request"]));
Lazy::new(|| PrometheusMetricsLayer::new("quickwit_metastore", ["request"]));

pub(crate) fn instrument_metastore(
metastore_impl: impl MetastoreService,
Expand Down

0 comments on commit c3be316

Please sign in to comment.