Remove libssl-dev installation from install_osmclient
[osm/devops.git] / installers / docker / osm_elk / metricbeat.yml
1 metricbeat.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
7 - 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
28 output.elasticsearch:
29   hosts: ["elasticsearch:9200"]