-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluxios.cfg
56 lines (44 loc) · 1.12 KB
/
fluxios.cfg
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
# Fluxios config file
[fluxios]
# nagios spool directory
spool_directory = /var/spool/nagios/fluxios
# fluxios log info
log_file = /var/log/nagios/fluxios.log
# max log size in megabytes (it will rotate the files)
log_max_size = 24
# DEBUG is quite verbose
#log_level = logging.DEBUG
log_level = INFO
# How often to process the spool directory
interval = 15
# measurement_prefix = mycorp.nagios
#batch_size = 500
#extra_tags = {"location": "la"}
[influxdb]
## See these URLs for descriptions of each option
## http://influxdb-python.readthedocs.org/en/latest/api-documentation.html#influxdbclient
## http://influxdb-python.readthedocs.org/en/latest/api-documentation.html#influxdbclusterclient
##
## InfluxDBClient (non-clustered) options
##
#host = 127.0.0.1
#port = 8086
#proxies = None
##
## InfluxDBClusterClient options
##
#cluster = False
#hosts = [('host1', port), ('host2', port), ... ('hostN', port)]
#shuffle = True
#healing_delay = 900
##
## common options
##
#ssl = True
#verify_ssl = True
#timeout = 15
#database = nagios
#username = <your username>
#password = <your password>
#use_udp = False
#udp_port = 4444