mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
memcached-exporter: Fix descriptions on read/written_bytes_total.
This commit is contained in:
committed by
Tim Abbott
parent
be59ef9c02
commit
11e0c448da
@@ -136,12 +136,12 @@ class MemcachedCollector(Collector):
|
||||
|
||||
yield counter_value(
|
||||
"read_bytes_total",
|
||||
"Total number of items stored during the life of this instance.",
|
||||
"Total number of bytes read by this server from network.",
|
||||
value=stats["bytes_read"],
|
||||
)
|
||||
yield counter_value(
|
||||
"written_bytes_total",
|
||||
"Total number of items stored during the life of this instance.",
|
||||
"Total number of bytes sent by this server to network.",
|
||||
value=stats["bytes_written"],
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user