Move to version 1.6.1
[sdc.git] / sdc-os-chef / sdc-kibana / chef-repo / cookbooks / sdc-kibana / templates / default / kibana.yml.erb
1 # Kibana is served by a back end server. This controls which port to use.
2 # server.port: 5601
3
4 # The host to bind the server to.
5 # server.host: "0.0.0.0"
6
7 # If you are running kibana behind a proxy, and want to mount it at a path,
8 # specify that path here. The basePath can't end in a slash.
9 server.basePath: "/sdc1/kibanaProxy"
10
11 # The Elasticsearch instance to use for all your queries.
12 # elasticsearch.url: "http://localhost:9200"
13 elasticsearch.url: "http://<%= @catalog_host %>:<%= @catalog_port %>/sdc2/esGateway"
14
15 # preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
16 # then the host you use to connect to *this* Kibana instance will be sent.
17 # elasticsearch.preserveHost: true
18
19 # Kibana uses an index in Elasticsearch to store saved searches, visualizations
20 # and dashboards. It will create a new index if it doesn't already exist.
21 # kibana.index: ".kibana"
22
23 # The default application to load.
24 kibana.defaultAppId: "dashboard/BI-Dashboard"
25
26 # If your Elasticsearch is protected with basic auth, these are the user credentials
27 # used by the Kibana server to perform maintenance on the kibana_index at startup. Your Kibana
28 # users will still need to authenticate with Elasticsearch (which is proxied through the Kibana server)
29 # elasticsearch.username: "kibana4-server"
30 # elasticsearch.password: "Aa1234%^!"
31
32 # SSL for outgoing requests from the Kibana Server to the browser (PEM formatted)
33 # server.ssl.cert: /path/to/your/server.crt
34 # server.ssl.key: /path/to/your/server.key
35
36 # Optional setting to validate that your Elasticsearch backend uses the same key files (PEM formatted)
37 # elasticsearch.ssl.cert: /path/to/your/client.crt
38 # elasticsearch.ssl.key: /path/to/your/client.key
39
40 # If you need to provide a CA certificate for your Elasticsearch instance, put the path of the pem file here.
41 # elasticsearch.ssl.ca: /var/lib/jetty/base/fe/config/cacert.pem
42
43 # Set to false to have a complete disregard for the validity of the SSL certificate.
44 # elasticsearch.ssl.verify: true
45
46 # Time in milliseconds to wait for elasticsearch to respond to pings, defaults to request_timeout setting
47 # elasticsearch.pingTimeout: 1500
48
49 # Time in milliseconds to wait for responses from the back end or elasticsearch.
50 # This must be > 0
51 # elasticsearch.requestTimeout: 300000
52
53 # Time in milliseconds for Elasticsearch to wait for responses from shards.
54 # Set to 0 to disable.
55 # elasticsearch.shardTimeout: 0
56
57 # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying
58 # elasticsearch.startupTimeout: 5000
59
60 # Set the path to where you would like the process id file to be created.
61 # pid.file: /var/run/kibana.pid
62
63 # If you would like to send the log output to a file you can set the path below.
64 # logging.dest: stdout
65
66 # Set this to true to suppress all logging output.
67 # logging.silent: false
68
69 # Set this to true to suppress all logging output except for error messages.
70 # logging.quiet: false
71
72 # Set this to true to log all events, including system usage information and all requests.
73 # logging.verbose: false
74