telemetry: fix typo in counter name

Summary:
Both the getBlobMetadata and fetchBlobMetadata were publishing to the same counter, making them indistinguishable.

Created from CodeHub with https://fburl.com/edit-in-codehub

Reviewed By: genevievehelsel

Differential Revision: D46343472

fbshipit-source-id: 04e09372c21dd5cb09336259ff34a5394d10d3b4
This commit is contained in:
Xavier Deguillard 2023-05-31 20:38:26 -07:00 committed by Facebook GitHub Bot
parent a42156f7dd
commit 1c20e574cc

View File

@ -332,7 +332,7 @@ struct HgBackingStoreStats : StatsGroup<HgBackingStoreStats> {
Duration fetchBlob{"store.hg.fetch_blob_us"};
Duration importBlob{"store.hg.import_blob_us"};
Duration getBlobMetadata{"store.hg.get_blob_metadata_us"};
Duration fetchBlobMetadata{"store.hg.get_blob_metadata_us"};
Duration fetchBlobMetadata{"store.hg.fetch_blob_metadata_us"};
Counter loadProxyHash{"store.hg.load_proxy_hash"};
};