mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-02 16:21:42 +00:00
Fix description of DB read bytes metric (#7716)
Fix a trivial typo that mixed up reads and writes.
This commit is contained in:
@@ -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(|| {
|
||||
|
||||
Reference in New Issue
Block a user