summaryrefslogtreecommitdiffstats
path: root/cli/src/cli-cmd-volume.c
diff options
context:
space:
mode:
authorRavishankar N <ravishankar@redhat.com>2018-10-26 17:51:38 +0530
committerRavishankar N <ravishankar@redhat.com>2018-11-28 10:15:18 +0000
commit2436286634e069639975f7b5c973f859a87de233 (patch)
tree0e4418dde5f9cde3c171cb24440c84a66e11c275 /cli/src/cli-cmd-volume.c
parentc12ded9ebf41c1f3bacda98a20b165a413740b2e (diff)
glfsheal: add a '--nolog' flag
....and if set, change the log level to GF_LOG_NONE. This is useful for monitoring applications which invoke the heal info set of commands once every minute, leading to un-necessary glfsheal* logs in /var/log/glusterfs/. For example, we can now run `gluster volume heal <VOLNAME> info --nolog` `gluster volume heal <VOLNAME> info split-brain --nolog` etc. The default log level is still retained at GF_LOG_INFO. The patch also changes glfsheal internally to accept '--xml' instead of 'xml'. Note: The --nolog flag is *not* displayed in the help anywhere, for the sake of consistency in how the other flags are not displayed anywhere in the help. fixes: bz#1654236 Change-Id: Ia08b6aa6e4a0548379db7e313dd4411ebc66f206 Signed-off-by: Ravishankar N <ravishankar@redhat.com> (cherry picked from commit fc9889d0373c323aab0d93f8ca31d2d8151bd041)
Diffstat (limited to 'cli/src/cli-cmd-volume.c')
-rw-r--r--cli/src/cli-cmd-volume.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c
index ad0d80d87db..ac3718f6230 100644
--- a/cli/src/cli-cmd-volume.c
+++ b/cli/src/cli-cmd-volume.c
@@ -2820,7 +2820,7 @@ cli_launch_glfs_heal(int heal_op, dict_t *options)
switch (heal_op) {
case GF_SHD_OP_INDEX_SUMMARY:
if (global_state->mode & GLUSTER_MODE_XML) {
- runner_add_args(&runner, "xml", NULL);
+ runner_add_args(&runner, "--xml", NULL);
}
break;
case GF_SHD_OP_SBRAIN_HEAL_FROM_BIGGER_FILE:
@@ -2842,7 +2842,7 @@ cli_launch_glfs_heal(int heal_op, dict_t *options)
case GF_SHD_OP_SPLIT_BRAIN_FILES:
runner_add_args(&runner, "split-brain-info", NULL);
if (global_state->mode & GLUSTER_MODE_XML) {
- runner_add_args(&runner, "xml", NULL);
+ runner_add_args(&runner, "--xml", NULL);
}
break;
case GF_SHD_OP_GRANULAR_ENTRY_HEAL_ENABLE:
@@ -2852,13 +2852,15 @@ cli_launch_glfs_heal(int heal_op, dict_t *options)
case GF_SHD_OP_HEAL_SUMMARY:
runner_add_args(&runner, "info-summary", NULL);
if (global_state->mode & GLUSTER_MODE_XML) {
- runner_add_args(&runner, "xml", NULL);
+ runner_add_args(&runner, "--xml", NULL);
}
break;
default:
ret = -1;
goto out;
}
+ if (global_state->mode & GLUSTER_MODE_GLFSHEAL_NOLOG)
+ runner_add_args(&runner, "--nolog", NULL);
ret = runner_start(&runner);
if (ret == -1)
goto out;