]> granicus.if.org Git - sysstat/commitdiff
Make JSON output consistent with XML one
authorSebastien GODARD <sysstat@users.noreply.github.com>
Mon, 30 Mar 2015 16:42:03 +0000 (18:42 +0200)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Mon, 30 Mar 2015 16:42:03 +0000 (18:42 +0200)
Use only header "cpu-load" for both "sar -u" and "sar -u ALL"
statistics (header "cpu-load-all" is removed). This is what is
done in XML output. So do the same here for JSON output.

Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
json_stats.c

index 3ee069d66a6edce6f6dcb03451848c3427936f77..8e320e8c15daeac97d635aeed0852e0427a9e328 100644 (file)
@@ -115,12 +115,7 @@ __print_funct_t json_print_cpu_stats(struct activity *a, int curr, int tab,
        struct stats_cpu *scc, *scp;
        char cpuno[8];
 
-       if (DISPLAY_CPU_DEF(a->opt_flags)) {
-               xprintf(tab++, "\"cpu-load\": [");
-       }
-       else if (DISPLAY_CPU_ALL(a->opt_flags)) {
-               xprintf(tab++, "\"cpu-load-all\": [");
-       }
+       xprintf(tab++, "\"cpu-load\": [");
 
        for (i = 0; (i < a->nr) && (i < a->bitmap->b_size + 1); i++) {