Fixed Redis reads and writes time series (#8954)

This commit is contained in:
Manuel Ceroni 2025-02-12 10:03:52 +01:00 committed by GitHub
parent 1d0994cfd0
commit 9a1691fec3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 37 additions and 13 deletions

View file

@ -85,10 +85,6 @@ function redis_api.getStats()
memory = redis_status["used_memory_rss"],
-- The number of keys in the database
dbsize = redis_status["dbsize"],
-- The number of reads in the database
reads = redis_status["total_reads_processed"],
-- The number of writes in the database
writes = redis_status["total_writes_processed"],
-- Health
health = getHealth(redis_status)
}