From da1416051d19d612d131acfde8589bc8658979b5 Mon Sep 17 00:00:00 2001 From: Gaurav Kumar Garg Date: Thu, 9 Apr 2015 15:36:20 +0530 Subject: glusterd: gluster volume status should show status of bitrot and scrubber daemon Command gluster volume status should show the status of bitrot and scrubber daemon and its pid information. Along with displaying bitrot and scrubber daemon information in gluster volume status command there should be command to show its individual status separately. Command to show individual status of bitrot and scrubber daemon will following. command to show only bitd daemon information will be gluster volume status bitd command to show only scrubber daemon information gluster volume status scrub Change-Id: Id86aae1156c8c599347c98e2a538f294d37376e4 BUG: 1209752 Signed-off-by: Gaurav Kumar Garg Reviewed-on: http://review.gluster.org/10175 Reviewed-by: Kaushal M Tested-by: Kaushal M --- glusterfsd/src/glusterfsd-mgmt.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'glusterfsd/src') diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 3ff3337c01d..1cff44be4d0 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -914,6 +914,10 @@ glusterfs_handle_node_status (rpcsvc_request_t *req) ret = gf_asprintf (&node_name, "%s", "glustershd"); else if ((cmd & GF_CLI_STATUS_QUOTAD) != 0) ret = gf_asprintf (&node_name, "%s", "quotad"); + else if ((cmd & GF_CLI_STATUS_BITD) != 0) + ret = gf_asprintf (&node_name, "%s", "bitd"); + else if ((cmd & GF_CLI_STATUS_SCRUB) != 0) + ret = gf_asprintf (&node_name, "%s", "scrubber"); else { ret = -1; @@ -939,6 +943,10 @@ glusterfs_handle_node_status (rpcsvc_request_t *req) ret = gf_asprintf (&subvol_name, "%s-replicate-0", volname); else if ((cmd & GF_CLI_STATUS_QUOTAD) != 0) ret = gf_asprintf (&subvol_name, "%s", volname); + else if ((cmd & GF_CLI_STATUS_BITD) != 0) + ret = gf_asprintf (&subvol_name, "%s", volname); + else if ((cmd & GF_CLI_STATUS_SCRUB) != 0) + ret = gf_asprintf (&subvol_name, "%s", volname); else { ret = -1; goto out; -- cgit