From 8f7c1e96f82f4f80b797f5d9a16db0a2e62f2dae 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';