diff --git a/src/Nethermind/Nethermind.Merge.Plugin/Metrics.cs b/src/Nethermind/Nethermind.Merge.Plugin/Metrics.cs index 5b872602043..752459cfcd3 100644 --- a/src/Nethermind/Nethermind.Merge.Plugin/Metrics.cs +++ b/src/Nethermind/Nethermind.Merge.Plugin/Metrics.cs @@ -2,6 +2,7 @@ // SPDX-License-Identifier: LGPL-3.0-only using System.ComponentModel; +using System.Runtime.Serialization; using Nethermind.Core.Attributes; namespace Nethermind.Merge.Plugin @@ -26,18 +27,22 @@ public static class Metrics [GaugeMetric] [Description("Number of Blobs requested by engine_getBlobsV1")] + [DataMember(Name = "execution_engine_getblobs_requested_total")] public static int NumberOfRequestedBlobs { get; set; } [GaugeMetric] [Description("Number of Blobs sent by engine_getBlobsV1")] + [DataMember(Name = "execution_engine_getblobs_available_total")] public static int NumberOfSentBlobs { get; set; } [GaugeMetric] [Description("Number of responses to engine_getBlobsV1 and engine_getBlobsV2 with all requested blobs")] + [DataMember(Name = "execution_engine_getblobs_hit_total")] public static int GetBlobsRequestsSuccessTotal { get; set; } [GaugeMetric] [Description("Number of responses to engine_getBlobsVX without all requested blobs")] + [DataMember(Name = "execution_engine_getblobs_miss_total")] public static int GetBlobsRequestsFailureTotal { get; set; } [CounterMetric]