blob: 389ecd4d4b6a41692013737543d3d9078c373a94 [file] [log] [blame]
lavado3846a922018-11-01 00:40:20 -07001metricbeat.modules:
2- module: docker
3 metricsets: ["container", "cpu", "diskio", "healthcheck", "info", "memory", "network"]
4 hosts: ["unix:///var/run/docker.sock"]
5 period: 30s
6 enabled: true
lavado3846a922018-11-01 00:40:20 -07007- module: system
8 enabled: true
9 period: 30s
10 metricsets:
11 - cpu # CPU usage
12 - load # CPU load averages
13 - memory # Memory usage
14 - network # Network IO
15 - process # Per process metrics
16 - process_summary # Process summary
17 - uptime # System Uptime
18 #- core # Per CPU core usage
19 - diskio # Disk IO
20 - filesystem # File system usage for each mountpoint
21 - fsstat # File system summary metrics
22 #- raid # Raid
23 #- socket # Sockets and connection info (linux only)
24 processes: ['.*']
25 cpu.metrics: ["percentages"] # The other available options are normalized_percentages and ticks.
26 core.metrics: ["percentages"] # The other available option is ticks.
27
lavado3846a922018-11-01 00:40:20 -070028output.elasticsearch:
29 hosts: ["elasticsearch:9200"]