System process metricset
editSystem process metricset
editThe System process
metricset provides process statistics. One document is
provided for each process.
This metricset is available on:
- FreeBSD
- Linux
- macOS
- Windows
Configuration
edit-
processes
-
When the
process
metricset is enabled, you can use theprocesses
option to define a list of regexp expressions to filter the processes that are reported. For more complex filtering, you should use theprocessors
configuration option. See Processors for more information.The following example config returns metrics for all processes:
metricbeat.modules: - module: system metricsets: ["process"] processes: ['.*']
-
process.cgroups.enabled
-
When the
process
metricset is enabled, you can use this boolean configuration option to disable cgroup metrics. By default cgroup metrics collection is enabled.The following example config disables cgroup metrics on Linux.
metricbeat.modules: - module: system metricsets: ["process"] process.cgroups.enabled: false
-
process.cmdline.cache.enabled
-
This metricset caches the command line args
for a running process by default. This means if you alter the command line for a
process while this metricset is running, these changes are not detected. Caching
can be disabled by setting
process.cmdline.cache.enabled: false
in the configuration. -
process.env.whitelist
-
This metricset can collect the environment variables that were used to start the process. This feature is available on Linux, Darwin, and FreeBSD. No environment variables are collected by default because they could contain sensitive information. You must configure the environment variables that you wish to collect by specifying a list of regular expressions that match the variable name.
metricbeat.modules: - module: system metricsets: ["process"] process.env.whitelist: - '^PATH$' - '^SSH_.*'
-
process.include_cpu_ticks
-
By default the cumulative CPU tick values are not reported by this metricset (only percentages are reported). Setting this option to true will enable the reporting of the raw CPU tick values (for user, system, and total CPU time).
metricbeat.modules: - module: system metricsets: ["process"] process.include_cpu_ticks: true
-
process.include_per_cpu
- By default metrics per cpu are reported when available. Setting this option to false will disable the reporting of these metrics.
-
process.include_top_n
-
These options allow you to filter out all processes
that are not in the top N by CPU or memory, in order to reduce the number of
documents created. If both the
by_cpu
andby_memory
options are used, the union of the two sets is included. -
process.include_top_n.enabled
-
Set to false to disable the top N feature
and include all processes, regardless of the other options. The default is
true
, but nothing is filtered unless one of the other options (by_cpu
orby_memory
) is set to a non-zero value. -
process.include_top_n.by_cpu
-
How many processes to include from the top
by CPU. The processes are sorted by the
system.process.cpu.total.pct
field. The default is 0. -
process.include_top_n.by_memory
-
How many processes to include from the top
by memory. The processes are sorted by the
system.process.memory.rss.bytes
field. The default is 0.
This is a default metricset. If the host module is unconfigured, this metricset is enabled by default.
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": "2017-10-12T08:05:34.853Z", "event": { "dataset": "system.process", "duration": 115000, "module": "system" }, "metricset": { "name": "process", "period": 10000 }, "process": { "args": [ "/sbin/init", "splash" ], "command_line": "/sbin/init splash", "cpu": { "pct": 0, "start_time": "2020-12-04T22:17:35.000Z" }, "memory": { "pct": 0.0004 }, "name": "systemd", "pgid": 1, "pid": 1, "ppid": 0, "state": "sleeping" }, "service": { "type": "system" }, "system": { "process": { "cmdline": "/sbin/init splash", "cpu": { "start_time": "2020-12-04T22:17:35.000Z", "total": { "norm": { "pct": 0 }, "pct": 0, "value": 1290 } }, "memory": { "rss": { "bytes": 12173312, "pct": 0.0004 }, "share": 8679424, "size": 172113920 }, "state": "sleeping" } }, "user": { "name": "root" } }