Seed of deployment of log components
[oom.git] / kubernetes / log / resources / kibana / conf / 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: 5601
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://elasticsearch.onap-log:9200"
34 #elasticsearch-service.onap-log:9200"
35 #elasticsearch.url: "http://10.247.47.3:9200"
36 # When this setting's value is true Kibana uses the hostname specified in the server.host
37 # setting. When the value of this setting is false, Kibana uses the hostname of the host
38 # that connects to this Kibana instance.
39 #elasticsearch.preserveHost: true
40
41 # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
42 # dashboards. Kibana creates a new index if the index doesn't already exist.
43 #kibana.index: ".kibana"
44
45 # The default application to load.
46 #kibana.defaultAppId: "discover"
47
48 # If your Elasticsearch is protected with basic authentication, these settings provide
49 # the username and password that the Kibana server uses to perform maintenance on the Kibana
50 # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
51 # is proxied through the Kibana server.
52 elasticsearch.username: "elastic"
53 elasticsearch.password: "changeme"
54 # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
55 # These settings enable SSL for outgoing requests from the Kibana server to the browser.
56 #server.ssl.enabled: $server_ssl_enabled
57 #server.ssl.certificate: $server_ssl_certificate
58 #server.ssl.key: $server_ssl_key
59
60 # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
61 # These files validate that your Elasticsearch backend uses the same key files.
62 #elasticsearch.ssl.certificate: $elasticsearch_ssl_certificate
63 #elasticsearch.ssl.key: $elasticsearch_ssl_key
64
65 # Optional setting that enables you to specify a path to the PEM file for the certificate
66 # authority for your Elasticsearch instance.
67 #elasticsearch.ssl.certificateAuthorities: $elasticsearch_ssl_certificateAuthorities
68
69 # To disregard the validity of SSL certificates, change this setting's value to 'none'.
70 #elasticsearch.ssl.verificationMode: $elasticsearch_ssl_verificationMode
71
72 # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
73 # the elasticsearch.requestTimeout setting.
74 #elasticsearch.pingTimeout: 1500
75
76 # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
77 # must be a positive integer.
78 #elasticsearch.requestTimeout: 30000
79
80 # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
81 # headers, set this value to [] (an empty list).
82 #elasticsearch.requestHeadersWhitelist: [ authorization ]
83
84 # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
85 # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
86 #elasticsearch.customHeaders: {}
87
88 # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
89 #elasticsearch.shardTimeout: 0
90
91 # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
92 #elasticsearch.startupTimeout: 5000
93
94 # Specifies the path where Kibana creates the process ID file.
95 #pid.file: /var/run/kibana.pid
96
97 # Enables you specify a file where Kibana stores log output.
98 #logging.dest: stdout
99
100 # Set the value of this setting to true to suppress all logging output.
101 #logging.silent: false
102
103 # Set the value of this setting to true to suppress all logging output other than error messages.
104 #logging.quiet: false
105
106 # Set the value of this setting to true to log all events, including system usage information
107 # and all requests.
108 #logging.verbose: false
109
110 # Set the interval in milliseconds to sample system and process performance
111 # metrics. Minimum is 100ms. Defaults to 5000.
112 #ops.interval: 5000
113
114 # The default locale. This locale can be used in certain circumstances to substitute any missing
115 # translations.
116 #i18n.defaultLocale: "en"