Last active
September 10, 2018 12:59
-
-
Save turbo/233a16d2dfb8de20567d6d529e243ccf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hostname = "kapacitor" | |
data_dir = "/var/lib/kapacitor" | |
[http] | |
# HTTP API Server for Kapacitor | |
# This server is always on, | |
# it serves both as a write endpoint | |
# and as the API endpoint for all other | |
# Kapacitor calls. | |
bind-address = ":9092" | |
log-enabled = true | |
write-tracing = false | |
pprof-enabled = false | |
https-enabled = false | |
https-certificate = "/etc/ssl/kapacitor.pem" | |
[config-override] | |
# Enable/Disable the service for overridding configuration via the HTTP API. | |
enabled = true | |
[logging] | |
# Destination for logs | |
# Can be a path to a file or 'STDOUT', 'STDERR'. | |
file = "/var/log/kapacitor/kapacitor.log" | |
# Logging level can be one of: | |
# DEBUG, INFO, WARN, ERROR, or OFF | |
level = "INFO" | |
[[influxdb]] | |
# Connect to an InfluxDB cluster | |
enabled = true | |
default = true | |
name = "influxdb" | |
urls = ["http://influxdb:8086"] | |
username = "" | |
password = "" | |
timeout = 0 | |
insecure-skip-verify = false | |
startup-timeout = "5m" | |
disable-subscriptions = false | |
subscription-mode = "cluster" | |
subscription-protocol = "http" | |
subscriptions-sync-interval = "1m0s" | |
kapacitor-hostname = "" | |
http-port = 0 | |
udp-bind = "" | |
udp-buffer = 1000 | |
udp-read-buffer = 0 | |
[influxdb.subscriptions] | |
[influxdb.excluded-subscriptions] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment