memcached-exporter: Fix descriptions on read/written_bytes_total.

This commit is contained in:
Alex Vandiver
2024-02-27 09:33:03 -05:00
committed by Tim Abbott
parent be59ef9c02
commit 11e0c448da

View File

@@ -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"],
)