forked from saltstack-formulas/influxdb-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpillar.example
83 lines (82 loc) · 2.02 KB
/
pillar.example
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
influxdb:
version: 0.8.5
# Configuration differs between influxdb versions
# 0.8
conf:
bind-address: '0.0.0.0'
logging:
directory: '/var/log/influxdb'
level: 'info'
admin:
port: 8083
api:
port: 8086
raft:
port: 8090
protobuf:
port: 8099
# 0.9
conf:
bind_address: '0.0.0.0'
hostname: 'foo.example.com'
port: 8086
reporting_disabled: 'false'
authentication:
enabled: 'false'
admin:
enabled: 'true'
port: 8083
api:
ssl_cert: '/path/to/cert.pem'
ssl_port: 8087
broker:
enabled: 'true'
dir: '/var/influxdb/raft'
collectd:
address: '0.0.0.0'
database: 'collectd_database'
enabled: 'false'
port: 25827
typesdb: '/usr/share/collectd/types.db'
data:
dir: '/var/influxdb/db'
enabled: 'true'
retention_auto_create: 'true'
retention_check_enabled: 'true'
retention_check_period: '10m'
initialization:
join_urls: 'http://host:port,http://host2:port'
logging:
directory: '/var/log/influxdb'
file: 'influxd.log'
write_tracing: 'false'
raft_tracing: 'false'
opentsdb:
address: '0.0.0.0'
database: 'opentsdb_database'
enabled: 'false'
port: 4242
snapshot:
bind_address: '127.0.0.1'
enabled: 'true'
port: 8087
udp:
bind_address: '0.0.0.0'
enabled: 'false'
port: 4444
lookup:
config: '/etc/influxdb/config.toml'
etc_default: '/etc/default/influxdb'
fullname: 'InfluxDB Service User'
home: '/opt/influxdb'
init_dir: '/etc/init.d'
logrotate_conf: '/etc/logrotate.d/influxdb'
shell: '/bin/false'
system_group: 'influxdb'
system_user: 'influxdb'
tmpl:
config: 'salt://influxdb/files/influxdb_0.9.config.toml.jinja'
default: 'salt://influxdb/files/influxdb_0.9.default'
sysvinit_script: 'salt://influxdb/files/influxdb_0.9.sysvinit.jinja'
logrotate: 'salt://influxdb/files/logrotate.conf.jinja'
# vi: set ft=yaml :