From 2a37dbd845348a774f45c4d77cffebc32c749251 Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Tue, 29 Dec 2015 10:54:55 +0530 Subject: glusterd/cli: mask out inaccurate scrub statistics Some of the scrub statistics are inaccurate at the moment and would successfully fool users at times. It's best to not display these stats and stick to what is accurate. Note that the change is only in the CLI part - glusterd (and brick) supplies _all_ available scrub statistics, but CLI just selectively sticks to what needs to be displayed. Change-Id: Ia99f505a2cb10d5406cd37035d082e593f7e9a8c BUG: 1285989 Signed-off-by: Venky Shankar Reviewed-on: http://review.gluster.org/13105 Reviewed-by: Gaurav Kumar Garg Tested-by: Gluster Build System Tested-by: NetBSD Build System Reviewed-by: Atin Mukherjee --- cli/src/cli-rpc-ops.c | 70 ++++++++------------------------------------------- 1 file changed, 11 insertions(+), 59 deletions(-) (limited to 'cli/src/cli-rpc-ops.c') diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index da9df4cc05e..741fb42b83e 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -10803,34 +10803,6 @@ gf_cli_print_bitrot_scrub_status (dict_t *dict) if (ret) gf_log ("cli", GF_LOG_TRACE, "failed to get node-name"); - memset (key, 0, 256); - snprintf (key, 256, "scrubbed-files-%d", i); - ret = dict_get_uint64 (dict, key, &scrub_files); - if (ret) - gf_log ("cli", GF_LOG_TRACE, "failed to get scrubbed " - "files"); - - memset (key, 0, 256); - snprintf (key, 256, "unsigned-files-%d", i); - ret = dict_get_uint64 (dict, key, &unsigned_files); - if (ret) - gf_log ("cli", GF_LOG_TRACE, "failed to get unsigned " - "files"); - - memset (key, 0, 256); - snprintf (key, 256, "scrub-duration-%d", i); - ret = dict_get_uint64 (dict, key, &scrub_time); - if (ret) - gf_log ("cli", GF_LOG_TRACE, "failed to get last scrub " - "duration"); - - memset (key, 0, 256); - snprintf (key, 256, "last-scrub-time-%d", i); - ret = dict_get_str (dict, key, &last_scrub); - if (ret) - gf_log ("cli", GF_LOG_TRACE, "failed to get last scrub" - " time"); - memset (key, 0, 256); snprintf (key, 256, "error-count-%d", i); ret = dict_get_uint64 (dict, key, &error_count); @@ -10841,40 +10813,20 @@ gf_cli_print_bitrot_scrub_status (dict_t *dict) cli_out ("\n%s\n", "==========================================" "==============="); - cli_out ("%s: %s\n", "Node name", node_name); - - cli_out ("%s: %"PRIu64 "\n", "Number of Scrubbed files", - scrub_files); - - cli_out ("%s: %"PRIu64 "\n", "Number of Unsigned files", - unsigned_files); - - if ((!last_scrub) || !strcmp (last_scrub, "")) - cli_out ("%s: %s\n", "Last completed scrub time", - "Scrubber pending to complete."); - else - cli_out ("%s: %s\n", "Last completed scrub time", - last_scrub); - - /* Printing last scrub duration time in human readable form*/ - days = scrub_time/86400; - hour = (scrub_time%86400)/3600; - minut = (scrub_time%86400%3600)/60; - second = (scrub_time%86400%3600%60); - cli_out ("%s: %"PRIu64 ":%"PRIu64 ":%"PRIu64 ":%"PRIu64 "\n", - "Duration of last scrub", days, hour, minut, second); + cli_out ("%s: %s\n", "Node", node_name); cli_out ("%s: %"PRIu64 "\n", "Error count", error_count); - if (error_count) - cli_out ("%s:\n", "Corrupted object's"); - /* Printing list of bad file's (Corrupted object's)*/ - for (j = 0; j < error_count; j++) { - memset (key, 0, 256); - snprintf (key, 256, "quarantine-%d-%d", j, i); - ret = dict_get_str (dict, key, &bad_file_str); - if (!ret) { - cli_out ("%s\n", bad_file_str); + if (error_count) { + cli_out ("%s:\n", "Corrupted object's [GFID]"); + /* Printing list of bad file's (Corrupted object's)*/ + for (j = 0; j < error_count; j++) { + memset (key, 0, 256); + snprintf (key, 256, "quarantine-%d-%d", j, i); + ret = dict_get_str (dict, key, &bad_file_str); + if (!ret) { + cli_out ("%s\n", bad_file_str); + } } } } -- cgit