Skip to content

Commit 62650f9

Browse files
chuttenbadboy
authored andcommitted
bug 2009475 - Correct glean.database.rkv_load_error's category
Also fix glean.upload.discarded_exceeding_pings_size while we're here.
1 parent 8fe4997 commit 62650f9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[Full changelog](https://github.com/mozilla/glean/compare/v66.3.0...main)
44

5+
* General
6+
* BUGFIX: Correct `glean.database.rkv_load_error`'s category and `glean.upload.discarded_exceeding_pings_size`'s name ([bug 2009475](https://bugzilla.mozilla.org/show_bug.cgi?id=2009475))
7+
58
# v66.3.0 (2025-12-19)
69

710
[Full changelog](https://github.com/mozilla/glean/compare/v66.2.0...v66.3.0)

glean-core/src/internal_metrics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ impl UploadMetrics {
241241

242242
discarded_exceeding_pings_size: MemoryDistributionMetric::new(
243243
CommonMetricData {
244-
name: "discarded_exceeding_ping_size".into(),
244+
name: "discarded_exceeding_pings_size".into(),
245245
category: "glean.upload".into(),
246246
send_in_pings: vec!["metrics".into(), "health".into()],
247247
lifetime: Lifetime::Ping,
@@ -354,7 +354,7 @@ impl DatabaseMetrics {
354354

355355
rkv_load_error: StringMetric::new(CommonMetricData {
356356
name: "rkv_load_error".into(),
357-
category: "glean.error".into(),
357+
category: "glean.database".into(),
358358
send_in_pings: vec!["metrics".into(), "health".into()],
359359
lifetime: Lifetime::Ping,
360360
disabled: false,

0 commit comments

Comments
 (0)