Enables or disables reporting of physical memory usage in absolute numbers,
i.e. bytes. Defaults to B<true>.
-=item B<ReportUtilization> B<false>|B<true>
+=item B<ReportUtilization> B<true>|B<false>
Enables or disables reporting of physical memory usage as a ratio of total
-memory, e.g. the fraction of physical memory used. Defaults to B<false>.
+memory, e.g. the fraction of physical memory used. Defaults to B<true>.
This is useful for deploying I<collectd> in a heterogeneous environment in
which the sizes of physical memory vary.
#endif
static bool report_usage = true;
-static bool report_utilization;
+static bool report_utilization = true;
static int memory_config(oconfig_item_t *ci) /* {{{ */
{