Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / log / components / log-kibana / resources / config / kibana.yml
1 {{/*
2 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16 xpack.graph.enabled: false
17 #Set to false to disable X-Pack graph features.
18 xpack.ml.enabled: false
19 #Set to false to disable X-Pack machine learning features.
20 xpack.monitoring.enabled: false
21 #Set to false to disable X-Pack monitoring features.
22 xpack.reporting.enabled: false
23 #Set to false to disable X-Pack reporting features.
24 xpack.security.enabled: false
25 #Set to false to disable X-Pack security features.
26 xpack.watcher.enabled: false
27 #Set to false to disable Watcher.
28 # Kibana is served by a back end server. This setting specifies the port to use.
29 server.port: {{.Values.service.externalPort}}
30
31 # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
32 # The default is 'localhost', which usually means remote machines will not be able to connect.
33 # To allow connections from remote users, set this parameter to a non-loopback address.
34 server.host: "0"
35
36 # Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
37 # the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
38 # to Kibana. This setting cannot end in a slash.
39 #server.basePath: ""
40
41 # The maximum payload size in bytes for incoming server requests.
42 #server.maxPayloadBytes: 1048576
43
44 # The Kibana server's name.  This is used for display purposes.
45 server.name: "Kibana"
46
47 # The URL of the Elasticsearch instance to use for all your queries.
48 elasticsearch.url: "http://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}:{{.Values.config.elasticsearchPort}}"
49 # When this setting's value is true Kibana uses the hostname specified in the server.host
50 # setting. When the value of this setting is false, Kibana uses the hostname of the host
51 # that connects to this Kibana instance.
52 #elasticsearch.preserveHost: true
53
54 # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
55 # dashboards. Kibana creates a new index if the index doesn't already exist.
56 #kibana.index: ".kibana"
57
58 # The default application to load.
59 #kibana.defaultAppId: "discover"
60
61 # If your Elasticsearch is protected with basic authentication, these settings provide
62 # the username and password that the Kibana server uses to perform maintenance on the Kibana
63 # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
64 # is proxied through the Kibana server.
65 elasticsearch.username: "elastic"
66 elasticsearch.password: "changeme"
67 # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
68 # These settings enable SSL for outgoing requests from the Kibana server to the browser.
69 #server.ssl.enabled: $server_ssl_enabled
70 #server.ssl.certificate: $server_ssl_certificate
71 #server.ssl.key: $server_ssl_key
72
73 # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
74 # These files validate that your Elasticsearch backend uses the same key files.
75 #elasticsearch.ssl.certificate: $elasticsearch_ssl_certificate
76 #elasticsearch.ssl.key: $elasticsearch_ssl_key
77
78 # Optional setting that enables you to specify a path to the PEM file for the certificate
79 # authority for your Elasticsearch instance.
80 #elasticsearch.ssl.certificateAuthorities: $elasticsearch_ssl_certificateAuthorities
81
82 # To disregard the validity of SSL certificates, change this setting's value to 'none'.
83 #elasticsearch.ssl.verificationMode: $elasticsearch_ssl_verificationMode
84
85 # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
86 # the elasticsearch.requestTimeout setting.
87 #elasticsearch.pingTimeout: 1500
88
89 # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
90 # must be a positive integer.
91 #elasticsearch.requestTimeout: 30000
92
93 # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
94 # headers, set this value to [] (an empty list).
95 #elasticsearch.requestHeadersWhitelist: [ authorization ]
96
97 # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
98 # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
99 #elasticsearch.customHeaders: {}
100
101 # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
102 #elasticsearch.shardTimeout: 0
103
104 # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
105 #elasticsearch.startupTimeout: 5000
106
107 # Specifies the path where Kibana creates the process ID file.
108 #pid.file: /var/run/kibana.pid
109
110 # Enables you specify a file where Kibana stores log output.
111 #logging.dest: stdout
112
113 # Set the value of this setting to true to suppress all logging output.
114 #logging.silent: false
115
116 # Set the value of this setting to true to suppress all logging output other than error messages.
117 #logging.quiet: false
118
119 # Set the value of this setting to true to log all events, including system usage information
120 # and all requests.
121 #logging.verbose: false
122
123 # Set the interval in milliseconds to sample system and process performance
124 # metrics. Minimum is 100ms. Defaults to 5000.
125 #ops.interval: 5000
126
127 # The default locale. This locale can be used in certain circumstances to substitute any missing
128 # translations.
129 #i18n.defaultLocale: "en"