The following aggregates all the CPUs in one specific host, creating cpu-all-sum/cpu-idle
, cpu-all-sum/cpu-nice
, etc.
<Aggregation>
Plugin "cpu"
Type "cpu"
SetPlugin "cpu"
SetPluginInstance "all-%{aggregation}"
GroupBy "Host"
GroupBy "TypeInstance"
CalculateSum true
</Aggregation>
However, the following does not work:
<Aggregation>
Plugin "disk"
PluginInstance "/xvd./"
Type "disk"
SetPlugin "disk"
SetPluginInstance "all-%{aggregation}"
GroupBy "Host"
GroupBy "TypeInstance"
CalculateSum true
</Aggregation>
... it is supposed to aggregate IO ops on all the "xvd" disks. It creates no files, and there's nothing in the log.
Any clues?