Receiving unwanted information from system module

Hello

I'm currently using Metricbeat to retrieve system information on my server, here's a sample of my metricbeat.yml :

#-------------------------------- System Module --------------------------------
- module: system
  metricsets:
    - cpu             # CPU usage
    - memory          # Memory usage
    - network         # Network IO
    - uptime          # System Uptime
    - filesystem     # File system usage for each mountpoint
  enabled: true
  period: 600s
  processes: ['.*']

  # Configure the metric types that are included by these metricsets.
  cpu.metrics:  ["percentages"]  # The other available options are normalized_percentages and ticks.
  core.metrics: ["percentages"]  # The other available option is ticks.

My issue is that even if some metricsets are not in here, I receive information about them.
For example I receive logs from system.load, system.process and system.socket

How could I disable those logs ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.