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