=item B<LogicalCoreNames> I<true>|I<false>
Boolean enabling the use of logical core numbering for per core
-statistics. This mirrors the in-kernel per core numbering. On
-multi-socket systems, the original per-cpu numbering behavior
-stomps on values on subsequent sockets.
+statistics. When enabled, cpu<n> is used as plugin instance, where n
+is a sequential number assigned by the kernel. Otherwise, core<n> is
+used where n is the n-th core of the socket, causing name conflicts
+when there is more than one socket.
=over 4
config_ptm = IS_TRUE(value);
apply_config_ptm = 1;
} else if (strcasecmp("LogicalCoreNames", key) == 0) {
- config_lcn = 1;
+ config_lcn = IS_TRUE(value);
} else if (strcasecmp("RunningAveragePowerLimit", key) == 0) {
tmp_val = strtoul(value, &end, 0);
if (*end != '\0' || tmp_val > UINT_MAX) {