Стандартный конфигурационный файл Metricbeat

Для ОС Windows:

metricbeat.modules:
- module: system
  metricsets:
    - cpu              # CPU usage
    - 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: ['.*']
  # 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.
  process.include_top_n:
    enabled: true
    by_cpu: 10
    by_memory: 10

output.logstash:
  ssl.enabled: true
  ssl.verification_mode: none

Для ОС Linux:

metricbeat.modules:
- 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: ['.*']
  # 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.
  process.include_top_n:
    enabled: true
    by_cpu: 10
    by_memory: 10

output.logstash:
  ssl.enabled: true
  ssl.verification_mode: none