From f27e38968b79e6f0fb80b70eab487c57889b9360 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Wed, 16 Apr 2025 17:28:00 +0000 Subject: [PATCH] fix: update metric name to avoid conflicts --- yarn-project/telemetry-client/src/metrics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/telemetry-client/src/metrics.ts b/yarn-project/telemetry-client/src/metrics.ts index 7537ba89fff4..a10903f6fb09 100644 --- a/yarn-project/telemetry-client/src/metrics.ts +++ b/yarn-project/telemetry-client/src/metrics.ts @@ -7,7 +7,7 @@ */ export const BLOB_SINK_STORE_REQUESTS = 'aztec.blob_sink.store_request_count'; -export const BLOB_SINK_RETRIEVE_REQUESTS = 'aztec.blob_sink.store_request_count'; +export const BLOB_SINK_RETRIEVE_REQUESTS = 'aztec.blob_sink.retrieve_request_count'; export const BLOB_SINK_OBJECTS_IN_BLOB_STORE = 'aztec.blob_sink.objects_in_blob_store'; export const BLOB_SINK_BLOB_SIZE = 'aztec.blob_sink.blob_size';