Merge "Add test monitoring module"
[bottlenecks.git] / docker / bottleneck-compose / kibana / config / kibana.yml
1 # Kibana is served by a back end server. This controls which port to use.
2 port: 5601
3
4 # The host to bind the server to.
5 host: "0.0.0.0"
6
7 # The Elasticsearch instance to use for all your queries.
8 elasticsearch_url: "http://elasticsearch:9200"
9
10 # preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
11 # then the host you use to connect to *this* Kibana instance will be sent.
12 elasticsearch_preserve_host: true
13
14 # Kibana uses an index in Elasticsearch to store saved searches, visualizations
15 # and dashboards. It will create a new index if it doesn't already exist.
16 kibana_index: ".kibana"
17
18 # If your Elasticsearch is protected with basic auth, this is the user credentials
19 # used by the Kibana server to perform maintence on the kibana_index at statup. Your Kibana
20 # users will still need to authenticate with Elasticsearch (which is proxied thorugh
21 # the Kibana server)
22 # kibana_elasticsearch_username: user
23 # kibana_elasticsearch_password: pass
24
25 # If your Elasticsearch requires client certificate and key
26 # kibana_elasticsearch_client_crt: /path/to/your/client.crt
27 # kibana_elasticsearch_client_key: /path/to/your/client.key
28
29 # If you need to provide a CA certificate for your Elasticsarech instance, put
30 # the path of the pem file here.
31 # ca: /path/to/your/CA.pem
32
33 # The default application to load.
34 default_app_id: "discover"
35
36 # Time in milliseconds to wait for elasticsearch to respond to pings, defaults to
37 # request_timeout setting
38 # ping_timeout: 1500
39
40 # Time in milliseconds to wait for responses from the back end or elasticsearch.
41 # This must be > 0
42 request_timeout: 300000
43
44 # Time in milliseconds for Elasticsearch to wait for responses from shards.
45 # Set to 0 to disable.
46 shard_timeout: 0
47
48 # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying
49 # startup_timeout: 5000
50
51 # Set to false to have a complete disregard for the validity of the SSL
52 # certificate.
53 verify_ssl: true
54
55 # SSL for outgoing requests from the Kibana Server (PEM formatted)
56 # ssl_key_file: /path/to/your/server.key
57 # ssl_cert_file: /path/to/your/server.crt
58
59 # Set the path to where you would like the process id file to be created.
60 # pid_file: /var/run/kibana.pid
61
62 # If you would like to send the log output to a file you can set the path below.
63 # This will also turn off the STDOUT log output.
64 # log_file: ./kibana.log
65 # Plugins that are included in the build, and no longer found in the plugins/ folder
66 bundled_plugin_ids:
67  - plugins/dashboard/index
68  - plugins/discover/index
69  - plugins/doc/index
70  - plugins/kibana/index
71  - plugins/markdown_vis/index
72  - plugins/metric_vis/index
73  - plugins/settings/index
74  - plugins/table_vis/index
75  - plugins/vis_types/index
76  - plugins/visualize/index