Skip to content

Commit

Permalink
fix(api): fix cache metrics name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
ymgyt committed Apr 21, 2024
1 parent 767adc3 commit 7e48a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/synd_feed/src/feed/cache/periodic_refresher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ impl<S> PeriodicRefresher<S> {
let entry_count = self.cache.entry_count();
let size = self.cache.weighted_size();

metric!(counter_cache.feed.count = entry_count);
metric!(counter_cache.feed.size = size);
metric!(counter.cache.feed.count = entry_count);
metric!(counter.cache.feed.size = size);
}
}

Expand Down

0 comments on commit 7e48a11

Please sign in to comment.