I see this error when trying to start metricbeat on win10 system:
2020-04-01T08:32:08.830+0800 ERROR instance/beat.go:933 Exiting: 8 errors: protocol not available; protocol not available; protocol not available; protocol not available; protocol not available; protocol not available; protocol not available; protocol not available
Here's the command to start:
./metricbeat -e
Here is the metricbeat.yml:
metricbeat.config.modules:
# Glob pattern for configuration loading
path: ${path.config}/modules.d/*.yml
# Set to true to enable config reloading
reload.enabled: false
Here is the modules.d/system.yml:
- module: system
period: 10s
metricsets:
- cpu
#- load
- memory
- network
- process
- process_summary
- socket_summary
#- entropy
#- core
#- diskio
#- socket
#- services
process.include_top_n:
by_cpu: 5 # include top 5 processes by CPU
by_memory: 5 # include top 5 processes by memory
- module: system
period: 1m
metricsets:
- filesystem
- fsstat
processors:
- drop_event.when.regexp:
system.filesystem.mount_point: '^/(sys|cgroup|proc|dev|etc|host|lib)($|/)'
- module: system
period: 15m
metricsets:
- uptime