-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkapacitor.conf
73 lines (64 loc) · 1.51 KB
/
kapacitor.conf
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
hostname = "kapacitor"
data_dir = "/var/lib/kapacitor"
skip-config-overrides = false
default-retention-policy = ""
[http]
bind-address = ":9092"
auth-enabled = false
log-enabled = true
write-tracing = false
pprof-enabled = false
https-enabled = false
https-certificate = "/etc/ssl/kapacitor.pem"
https-private-key = ""
shutdown-timeout = "10s"
shared-secret = ""
[storage]
boltdb = "/var/lib/kapacitor/kapacitor.db"
[replay]
dir = "/var/lib/kapacitor/replay"
[[influxdb]]
enabled = true
name = "default"
default = false
urls = ["http://influxdb:8086"]
username = ""
password = ""
ssl-ca = ""
ssl-cert = ""
ssl-key = ""
insecure-skip-verify = false
timeout = "0s"
disable-subscriptions = false
subscription-protocol = "http"
subscription-mode = "cluster"
kapacitor-hostname = ""
http-port = 0
udp-bind = ""
udp-buffer = 1000
udp-read-buffer = 0
startup-timeout = "5m0s"
subscriptions-sync-interval = "1m0s"
[influxdb.excluded-subscriptions]
_kapacitor = ["autogen"]
[logging]
file = "STDERR"
level = "DEBUG"
[tls]
min-version = ""
max-version = ""
[stats]
enabled = true
stats-interval = "10s"
database = "_kapacitor"
retention-policy = "autogen"
timing-sample-rate = 0.1
timing-movavg-size = 1000
[udf]
[udf.functions]
[udf.functions.batchAggregateUDF]
socket = "/var/run/batchAggregateUDF.sock"
timeout = "10s"
[udf.functions.streamAggregateUDF]
socket = "/var/run/streamAggregateUDF.sock"
timeout = "10s"