/* Commits the number of cores */
static void cpu_commit_num_cpu (gauge_t num_cpu) /* {{{ */
{
-//// static void submit_value (int cpu_num, int cpu_state, const char *type, value_t value)
value_t values[1];
value_list_t vl = VALUE_LIST_INIT;
- /// memcpy(&values[0], &value, sizeof(value));
values[0].gauge = num_cpu;
vl.values = values;
sstrncpy (vl.host, hostname_g, sizeof (vl.host));
sstrncpy (vl.plugin, "cpu", sizeof (vl.plugin));
- sstrncpy (vl.type, "gauge", sizeof (vl.type));
- sstrncpy (vl.type_instance, "ncpu",
- sizeof (vl.type_instance));
+ sstrncpy (vl.type, "count", sizeof (vl.type));
plugin_dispatch_values (&vl);
} /* }}} void cpu_commit_num_cpu */
};
if (report_num_cpu)
- {
cpu_commit_num_cpu ((gauge_t) global_cpu_num);
- }
if (report_by_state && report_by_cpu && !report_percent)
{