From 64377720706f4cfcacd99d26462c0d71b72d3178 Mon Sep 17 00:00:00 2001 From: Guillaume Thouvenin Date: Mon, 26 Sep 2016 15:55:08 +0200 Subject: [PATCH] Document memcached_ps_cputime_syst and memcached_ps_cputime_user Change-Id: Ib8106563a343337fd736ac30095155a7893e9bd0 Closes-Bug: #1576265 --- doc/user/source/metrics/memcached.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/user/source/metrics/memcached.rst b/doc/user/source/metrics/memcached.rst index 718037d1a..8833b2e71 100644 --- a/doc/user/source/metrics/memcached.rst +++ b/doc/user/source/metrics/memcached.rst @@ -22,5 +22,10 @@ * ``memcached_ops_misses``, the number of items that have been requested and not found. * ``memcached_percent_hitratio``, the percentage of get command hits (in cache). +* ``memcached_ps_cputime_syst``, the percentage of CPU time spent in system + mode by memcached. It can be greater than 100% when the node has more than + one CPU. +* ``memcached_ps_cputime_user``, the percentage of CPU time spent in user mode + by memcached. It can be greater than 100% when the node has more than one CPU. -For details, see the `Memcached documentation `_. \ No newline at end of file +For details, see the `Memcached documentation `_.