Fix description of DB read bytes metric (#7716)

Fix a trivial typo that mixed up reads and writes.
This commit is contained in:
Michael Sproul
2025-07-08 18:50:15 +10:00
committed by GitHub
parent 3e6b0bd0a3
commit b9c1a2b0c0

View File

@@ -68,7 +68,7 @@ pub static DISK_DB_WRITE_COUNT: LazyLock<Result<IntCounterVec>> = LazyLock::new(
pub static DISK_DB_READ_TIMES: LazyLock<Result<Histogram>> = 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<Result<Histogram>> = LazyLock::new(|| {