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