We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0c6689 commit 3961869Copy full SHA for 3961869
src/metrics/mod.rs
@@ -48,7 +48,7 @@ metrics! {
48
pub(crate) rustdoc_rendering_times: HistogramVec["step"],
49
50
/// Count of recently accessed crates
51
- pub(crate) recent_krates: IntGaugeVec["duration"],
+ pub(crate) recent_crates: IntGaugeVec["duration"],
52
/// Count of recently accessed versions of crates
53
pub(crate) recent_versions: IntGaugeVec["duration"],
54
/// Count of recently accessed platforms of versions of crates
@@ -130,7 +130,7 @@ impl RecentReleases {
130
.set(five_minute_count);
131
}
132
133
- inner(&self.krates, &metrics.recent_krates);
+ inner(&self.krates, &metrics.recent_crates);
134
inner(&self.versions, &metrics.recent_versions);
135
inner(&self.platforms, &metrics.recent_platforms);
136
0 commit comments