WARNING: Version 6.0 of Metricbeat has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
System core metricset
editSystem core metricset
editThe System core
metricset provides usage statistics for each CPU core.
This metricset is available on:
- FreeBSD
- Linux
- macOS
- OpenBSD
- Windows
Configuration
edit-
core.metrics
-
This option controls what metrics are reported for each CPU core. The value is a list and two metric types are supported -
percentages
andticks
. The default value iscore.metrics: [percentages]
.metricbeat.modules: - module: system metricsets: [core] core.metrics: [percentages, ticks]
Fields
editFor a description of each field in the metricset, see the exported fields section.
Here is an example document generated by this metricset:
{ "@timestamp": "2016-05-23T08:05:34.853Z", "beat": { "hostname": "host.example.com", "name": "host.example.com" }, "metricset": { "module": "system", "name": "core", "rtt": 115 }, "system": { "core": { "id": 1, "idle": { "pct": 0.98, "ticks": 243110733 }, "iowait": { "pct": 0, "ticks": 0 }, "irq": { "pct": 0, "ticks": 0 }, "nice": { "pct": 0, "ticks": 0 }, "softirq": { "pct": 0, "ticks": 0 }, "steal": { "pct": 0, "ticks": 0 }, "system": { "pct": 0, "ticks": 840906 }, "user": { "pct": 0.02, "ticks": 1266791 } } } }