We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e484cc8 commit 04cb8f2Copy full SHA for 04cb8f2
src/common/storage/src/operator_cache.rs
@@ -32,9 +32,9 @@ use crate::operator::init_operator_uncached;
32
33
// Internal metrics for monitoring cache effectiveness
34
static CACHE_HIT_COUNT: LazyLock<Counter> =
35
- LazyLock::new(|| register_counter("storage_operator_cache_hit_total"));
+ LazyLock::new(|| register_counter("storage_operator_cache_hit"));
36
static CACHE_MISS_COUNT: LazyLock<Counter> =
37
- LazyLock::new(|| register_counter("storage_operator_cache_miss_total"));
+ LazyLock::new(|| register_counter("storage_operator_cache_miss"));
38
static CACHE_SIZE: LazyLock<Gauge> =
39
LazyLock::new(|| register_gauge("storage_operator_cache_size"));
40
0 commit comments