Adding support for prometheus using ansible
[barometer.git] / docker / ansible / roles / config_files / vars / main.yml
1 #Copyright 2018 OPNFV and Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15
16 #directory paths
17 config_file_dir: "/opt/collectd/etc/collectd.conf.d/"
18 csv_log_dir: "/var/lib/collectd/csv"
19 logfile_dir: "/var/log/"
20
21 #global default interval
22 interval_value: 10
23
24 #network plugin vars
25 network_port: 25826
26 network_ip_addr: "{{ (groups['influxdb_hosts']|default({}))[0] | default('localhost') }}"
27
28 #prometheus plugin vars
29 prometheus_port: 9103
30
31 #ovs event and stats plugin vars
32 ovs_event_interval: 1
33 ovs_event_ip_addr: localhost
34 ovs_event_port: 6640
35 ovs_stats_interval: 1
36 ovs_stats_ip_addr: localhost
37 ovs_stats_port: 6640
38
39 #rdt plugin vars
40 rdt_interval: 1
41
42 #kafka plugin vars
43 kafka_ip_addr: localhost
44 kafka_port: 9092
45 kafka_topic: collectd
46
47 #logfile plugin vars
48 logfile_log_level: info
49
50 #syslog plugin vars
51 syslog_log_level: info
52
53 #rrd plugin vars
54 rrdtool_db_dir: "/var/lib/collectd/rrd"
55 cache_flush: 120
56 write_per_sec: 50
57
58 #additional configuration files path
59 additional_configs_path: ""