WARNING: Version 6.0 of Metricbeat has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Memcached Fields
editMemcached Fields
edit[]beta Memcached module
memcached Fields
editstats Fields
editstats
memcached.stats.pid
edittype: long
Current process ID of the Memcached task.
memcached.stats.uptime.sec
edittype: long
Memcached server uptime.
memcached.stats.threads
edittype: long
Number of threads used by the current Memcached server process.
memcached.stats.connections.current
edittype: long
Number of open connections to this Memcached server, should be the same value on all servers during normal operation.
memcached.stats.connections.total
edittype: long
Numer of successful connect attempts to this server since it has been started.
memcached.stats.get.hits
edittype: long
Number of successful "get" commands (cache hits) since startup, divide them by the "cmd_get" value to get the cache hitrate.
memcached.stats.get.misses
edittype: long
Number of failed "get" requests because nothing was cached for this key or the cached value was too old.
memcached.stats.cmd.get
edittype: long
Number of "get" commands received since server startup not counting if they were successful or not.
memcached.stats.cmd.set
edittype: long
Number of "set" commands serviced since startup.
memcached.stats.read.bytes
edittype: long
Total number of bytes received from the network by this server.
memcached.stats.written.bytes
edittype: long
Total number of bytes send to the network by this server.
memcached.stats.items.current
edittype: long
Number of items currently in this server’s cache.
memcached.stats.items.total
edittype: long
Number of items stored ever stored on this server. This is no "maximum item count" value but a counted increased by every new item stored in the cache.
memcached.stats.evictions
edittype: long
Number of objects removed from the cache to free up memory for new items because Memcached reached it’s maximum memory setting (limit_maxbytes).