# https://github.com/elastic/kibana-docker FROM docker.elastic.co/kibana/kibana-oss:${ELK_VERSION}
# Add your kibana plugins setup here # Example: RUN kibana-plugin install <name|url> RUN kibana-plugin install https://github.com/sirensolutions/sentinl/releases/download/tag-6.5.0-0/sentinl-v6.5.4.zip
# The hosts must be passed as MongoDB URLs in the format: # [mongodb://][user:pass@]host[:port]. # The username and password can also be set using the respective configuration # options. The credentials in the URL take precedence over the username and # password configuration options. hosts: ["localhost:27017"] #============ System =============================== -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 -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) enabled:true period:1m 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