@cryptotaxi247 / netdata-1 / commits / 513a4cb82

chore(apps.plugin): change cpu_guest chart context (#12983)

Ilya Mashchenko committed May 23, 2022 at 10:31 UTC 513a4cb821414b63bb059d156911516c6e768a06
1 file changed +1 -1
collectors/apps.plugin/apps_plugin.c
+1 -1
@@ -3768,7 +3768,7 @@ static void send_charts_updates_to_netdata(struct target *root, const char *type
3768 }
3769
3770 if(show_guest_time) {
3771 - fprintf(stdout, "CHART %s.cpu_guest '' '%s CPU Guest Time (100%% = 1 core)' 'percentage' cpu %s.cpu_system stacked 20022 %d\n", type, title, type, update_every);
3771 + fprintf(stdout, "CHART %s.cpu_guest '' '%s CPU Guest Time (100%% = 1 core)' 'percentage' cpu %s.cpu_guest stacked 20022 %d\n", type, title, type, update_every);
3772 for (w = root; w; w = w->next) {
3773 if(unlikely(w->exposed))
3774 fprintf(stdout, "DIMENSION %s '' absolute 1 %llu\n", w->name, time_factor * RATES_DETAIL / 100LLU);