kibana/config/kibana.yml

64 lines
2.4 KiB
YAML
Raw Normal View History

2015-01-07 01:29:36 +01:00
# Kibana is served by a back end server. This controls which port to use.
2015-07-09 02:40:44 +02:00
# server.port: 5601
2015-01-07 01:29:36 +01:00
# The host to bind the server to.
2015-07-09 02:40:44 +02:00
# server.host: "0.0.0.0"
2015-01-07 01:29:36 +01:00
# The Elasticsearch instance to use for all your queries.
2015-07-09 02:40:44 +02:00
# elasticsearch.url: "http://localhost:9200"
2015-01-07 01:29:36 +01:00
# preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
# then the host you use to connect to *this* Kibana instance will be sent.
2015-07-09 02:40:44 +02:00
# elasticsearch.preserveHost: true
2015-01-07 01:29:36 +01:00
# Kibana uses an index in Elasticsearch to store saved searches, visualizations
# and dashboards. It will create a new index if it doesn't already exist.
2015-07-09 02:40:44 +02:00
# kibana.index: ".kibana"
# The default application to load.
# kibana.defaultAppId: "discover"
2015-01-07 01:29:36 +01:00
# Time in milliseconds to wait for elasticsearch to respond to pings, defaults to
# request_timeout setting
# elasticsearch.pingTimeout: 1500
# Time in milliseconds to wait for responses from the back end or elasticsearch.
# This must be > 0
# elasticsearch.requestTimeout: 300000
# Time in milliseconds for Elasticsearch to wait for responses from shards.
# Set to 0 to disable.
# elasticsearch.shardTimeout: 0
# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying
# elasticsearch.startupTimeout: 5000
# If your Elasticsearch is protected with basic auth, this is the user credentials
# used by the Kibana server to perform maintence on the kibana_index at statup. Your Kibana
# users will still need to authenticate with Elasticsearch (which is proxied thorugh
# the Kibana server)
2015-07-09 02:40:44 +02:00
# elasticsearch.username: user
# elasticsearch.password: pass
# If your Elasticsearch requires client certificate and key
2015-07-09 02:40:44 +02:00
# elasticsearch.ssl.cert: /path/to/your/client.crt
# elasticsearch.ssl.key: /path/to/your/client.key
2015-06-29 08:10:07 +02:00
# If you need to provide a CA certificate for your Elasticsearch instance, put
# the path of the pem file here.
2015-07-09 02:40:44 +02:00
# elasticsearch.ssl.ca: /path/to/your/CA.pem
2015-07-09 02:40:44 +02:00
# Set to false to have a complete disregard for the validity of the SSL
# certificate.
# elasticsearch.ssl.verify: true
2015-01-07 01:29:36 +01:00
2015-01-26 21:36:53 +01:00
# SSL for outgoing requests from the Kibana Server (PEM formatted)
2015-07-09 02:40:44 +02:00
# server.ssl.cert: /path/to/your/server.key
# server.ssl.key: /path/to/your/server.crt
# Set the path to where you would like the process id file to be created.
# pid.file: /var/run/kibana.pid
2015-04-04 01:05:24 +02:00
# If you would like to send the log output to a file you can set the path below.
2015-07-09 02:40:44 +02:00
# logging.dest: stdout