summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/monitoring.c
diff options
context:
space:
mode:
authorAmar Tumballi <amarts@redhat.com>2018-01-30 18:48:33 +0530
committerAmar Tumballi <amarts@redhat.com>2018-02-16 16:18:11 +0000
commite80c10d5e6fb97e132ff7f1c2846629fb5ad915f (patch)
tree69f5507def12d5443bb216ad4beafddb63ac3a80 /libglusterfs/src/monitoring.c
parent664b946496368f625b5a15646b5aa791078055ef (diff)
metrics: set latency min value during xlator init
otherwise, the very first metrics will have all the min as 0. also no need to print pending-fops if it is 0. Updates #168 Change-Id: I233de6c92b1a73977bb468ba211ac6ec3c05298f Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'libglusterfs/src/monitoring.c')
-rw-r--r--libglusterfs/src/monitoring.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libglusterfs/src/monitoring.c b/libglusterfs/src/monitoring.c
index 25103867e24..62738c79e74 100644
--- a/libglusterfs/src/monitoring.c
+++ b/libglusterfs/src/monitoring.c
@@ -81,7 +81,8 @@ dump_latency_and_count (xlator_t *xl, int fd)
uint64_t cbk;
uint64_t count;
- dprintf (fd, "%s.total.winds.count %lu\n", xl->name, xl->winds);
+ if (xl->winds)
+ dprintf (fd, "%s.total.pending-winds.count %lu\n", xl->name, xl->winds);
/* Need 'fuse' data, and don't need all the old graph info */
if ((xl != xl->ctx->master) && (xl->ctx->active != xl->graph))