From 3f80d8f530156c4e945d3c5c4954e022a89cc0a1 Mon Sep 17 00:00:00 2001 From: Damien Lachaume <135982616+dlachaume@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:50:47 +0200 Subject: [PATCH 1/2] fix: rename metric name for `certificate_total_produced_since_startup` --- mithril-aggregator/src/metrics/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mithril-aggregator/src/metrics/service.rs b/mithril-aggregator/src/metrics/service.rs index bf73531d6d8..b15932e2979 100644 --- a/mithril-aggregator/src/metrics/service.rs +++ b/mithril-aggregator/src/metrics/service.rs @@ -41,7 +41,7 @@ build_metrics_service!( "Number of signature registrations received since startup on a Mithril aggregator node" ), certificate_total_produced_since_startup:MetricCounter( - "mithril_aggregator_certificate_detail_total_produced_since_startup_counter", + "mithril_aggregator_certificate_total_produced_since_startup_counter", "Number of certificates produced since startup on a Mithril aggregator node" ), artifact_cardano_db_total_produced_since_startup:MetricCounter( From 0ed74994f635a0fe3f760efacb72ce5ae56112bc Mon Sep 17 00:00:00 2001 From: Damien Lachaume <135982616+dlachaume@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:51:19 +0200 Subject: [PATCH 2/2] chore: upgrade crate versions * mithril-aggregator from `0.5.86` to `0.5.87` --- Cargo.lock | 2 +- mithril-aggregator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b00efe49979..be313dfb75e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3552,7 +3552,7 @@ dependencies = [ [[package]] name = "mithril-aggregator" -version = "0.5.86" +version = "0.5.87" dependencies = [ "anyhow", "async-trait", diff --git a/mithril-aggregator/Cargo.toml b/mithril-aggregator/Cargo.toml index c6d2cbd495d..5a5dde8b0e0 100644 --- a/mithril-aggregator/Cargo.toml +++ b/mithril-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator" -version = "0.5.86" +version = "0.5.87" description = "A Mithril Aggregator server" authors = { workspace = true } edition = { workspace = true }