-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetricbeat.yml
62 lines (45 loc) · 1.89 KB
/
metricbeat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
################# Metricbeat Pulpo Connector DE Configuration #################
# This file is the configuration file for the metricbeat running inside this
# beanstalk docker instance
#============================ Config Reloading ===============================
metricbeat.config.modules:
# Glob pattern for configuration reloading
path: ${path.config}/conf.d/*.yml
# Period on which files under path should be checked for chagnes
reload.period: 10s
# Set to true to enable config reloading
reload.enabled: false
#========================== Modules configuration ============================
metricbeat.modules:
#------------------------------- HTTP Module ------------------------------
- module: http
metricsets: ["json"]
period: 10s
hosts: '${PULPO_METRICBEAT_JOLOKIA_HOSTS}'
username: '${PULPO_CONTACT_ENGINE_BASIC_AUTH_USER}'
password: '${PULPO_CONTACT_ENGINE_BASIC_AUTH_PASSWORD}'
namespace: "metrics"
path: "/management/metrics"
ssl.verification_mode: none
#------------------------------- Docker Module -------------------------------
- module: docker
metricsets: ["container", "cpu", "diskio", "healthcheck", "info", "memory", "network"]
hosts: ["unix:///var/run/docker.sock"]
enabled: true
period: 10s
#================================ General ======================================
tags: '${PULPO_METRICBEAT_TAGS}'
fields:
env: '${PULPO_METRICBEAT_ENV}'
service: '${PULPO_METRICBEAT_SERVICE}'
#================================ Outputs ======================================
#-------------------------- Elasticsearch output -------------------------------
output.elasticsearch:
hosts: '${PULPO_METRICBEAT_ES_HOSTS}'
output.console:
enabled: false
#================================ Logging ======================================
logging.level: debug
logging.to_files: true
logging.files:
keepfiles: 5