IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

System core metricset

edit

The 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 and ticks. The default value is core.metrics: [percentages].

metricbeat.modules:
- module: system
  metricsets: [core]
  core.metrics: [percentages, ticks]

Fields

edit

For a description of each field in the metricset, see the exported fields section.

Here is an example document generated by this metricset:

{
    "@timestamp": "2017-10-12T08: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.3333,
                "ticks": 51795238
            },
            "iowait": {
                "pct": 0,
                "ticks": 42254
            },
            "irq": {
                "pct": 0,
                "ticks": 0
            },
            "nice": {
                "pct": 0,
                "ticks": 15
            },
            "softirq": {
                "pct": 0,
                "ticks": 1469
            },
            "steal": {
                "pct": 0,
                "ticks": 0
            },
            "system": {
                "pct": 0.25,
                "ticks": 109372
            },
            "user": {
                "pct": 0.4167,
                "ticks": 185023
            }
        }
    }
}