Plugin:Intel PMU/Config

From collectd Wiki
< Plugin:Intel PMU
Revision as of 21:51, 13 March 2020 by Efoley (talk | contribs) (Add configuration examples for Intel PMU plugin)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This page contains some example configurations for the Intel_PMU plugin. This page is meant as a cookbook, so if you have a configuration for an aspect not handled here or a daemon not present, please feel free to add anything that's useful for you.

Collect only HWCacheEvents

<Plugin intel_pmu>
 HWCacheEvents true
 KernelPMUEvents false
 SWEvents false
</Plugin>

Collectd only KernelPMUevents

<Plugin intel_pmu>
 HWCacheEvents false
 KernelPMUEvents true
 SWEvents false
</Plugin>

Collect only SWEvents

<Plugin intel_pmu>
 HWCacheEvents false
 KernelPMUEvents false
 SWEvents true
</Plugin>

Enable hardware specific events

A single value or comma separated list of values should be used for HWSpecificEvents parameter.

<Plugin intel_pmu>
 HWCacheEvents false
 KernelPMUEvents false
 SWEvents false
 HWSpecificEvents "L2_RQSTS.CODE_RD_HIT,L2_RQSTS.CODE_RD_MISS"
</Plugin>

See also