From b9c1a2b0c0997fd0530a995f7ea72f89b35ba22c Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 8 Jul 2025 18:50:15 +1000 Subject: [PATCH] Fix description of DB read bytes metric (#7716) Fix a trivial typo that mixed up reads and writes. --- beacon_node/store/src/metrics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/store/src/metrics.rs b/beacon_node/store/src/metrics.rs index 44b61e1ebe..e04e662865 100644 --- a/beacon_node/store/src/metrics.rs +++ b/beacon_node/store/src/metrics.rs @@ -68,7 +68,7 @@ pub static DISK_DB_WRITE_COUNT: LazyLock> = LazyLock::new( pub static DISK_DB_READ_TIMES: LazyLock> = LazyLock::new(|| { try_create_histogram( "store_disk_db_read_seconds", - "Time taken to write bytes to store.", + "Time taken to read bytes from store.", ) }); pub static DISK_DB_WRITE_TIMES: LazyLock> = LazyLock::new(|| {