I have added a process in the metricbeat.yml file to monitor but the process details are not showing in kibana dashboard.
I am getting the process details in the agent logs but when I try to get the process details using process.name:"abc" the kibana dashboard is unable to fetch any details.
The metricbeat.yml is like
-
module: system
metricsets:- cpu # CPU usage
- load # CPU load averages
- memory # Memory usage
- network # Network IO
- process # Per process metrics
- process_summary # Process summary
- uptime # System Uptime
- socket_summary # Socket summary
#- core # Per CPU core usage
#- diskio # Disk IO
#- filesystem # File system usage for each mountpoint
#- fsstat # File system summary metrics
#- raid # Raid
#- socket # Sockets and connection info (linux only)
#- service # systemd service information
enabled: true
period: 10s
processes: ['abc']
Configure the mount point of the host’s filesystem for use in monitoring a host from within a container
#hostfs: "/hostfs"
Configure the metric types that are included by these metricsets.
cpu.metrics: ["percentages","normalized_percentages"] # The other available option is ticks.
core.metrics: ["percentages"] # The other available option is ticks.A list of filesystem types to ignore. The filesystem metricset will not
collect data from filesystems matching any of the specified types, and
fsstats will not include data from these filesystems in its summary stats.
If not set, types associated to virtual filesystems are automatically
added when this information is available in the system (e.g. the list of
nodev
types in/proc/filesystem
).#filesystem.ignore_types:
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 setsis included.
process.include_top_n:
Set to false to disable this feature and include all processes
enabled: false