[LOG]Add Config of Kibana for ONAP Log
[logging-analytics.git] / elasticstack / kibana / conf / kibana.properties
1 # Kibana is served by a back end server. This setting specifies the port to use.
2 server_port: 5601
3
4 # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
5 # The default is 'localhost', which usually means remote machines will not be able to connect.
6 # To allow connections from remote users, set this parameter to a non-loopback address.
7 server_host: "0"
8
9 # The Kibana server's name.  This is used for display purposes.
10 server_name: "Kibana"
11
12 # The URL of the Elasticsearch instance to use for all your queries.
13 $elasticsearch_url: "http://localhost:9200"
14
15 # When this setting's value is true Kibana uses the hostname specified in the server.host
16 # setting. When the value of this setting is false, Kibana uses the hostname of the host
17 # that connects to this Kibana instance.
18 #elasticsearch.preserveHost: true
19
20 # If your Elasticsearch is protected with basic authentication, these settings provide
21 # the username and password that the Kibana server uses to perform maintenance on the Kibana
22 # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
23 # is proxied through the Kibana server.
24 $elasticsearch_username: "elastic"
25 $elasticsearch_password: "changeme"
26
27 # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
28 # These settings enable SSL for outgoing requests from the Kibana server to the browser.
29 #$server_ssl_enabled: false
30 #$server_ssl_certificate: /path/to/your/server.crt
31 #$server_ssl_key: /path/to/your/server.key
32
33 # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
34 # These files validate that your Elasticsearch backend uses the same key files.
35 #$elasticsearch_ssl_certificate: /path/to/your/client.crt
36 #$elasticsearch_ssl_key: /path/to/your/client.key
37
38 # Optional setting that enables you to specify a path to the PEM file for the certificate
39 # authority for your Elasticsearch instance.
40 #$elasticsearch_ssl_certificateAuthorities: [ "/path/to/your/CA.pem" ]
41
42 # To disregard the validity of SSL certificates, change this setting's value to 'none'.
43 #$elasticsearch_ssl_verificationMode: full
44
45 # Enables you specify a file where Kibana stores log output.
46 #logging.dest: stdout
47
48 # Set the value of this setting to true to suppress all logging output.
49 #logging.silent: false
50
51 # Set the value of this setting to true to suppress all logging output other than error messages.
52 #logging.quiet: false
53
54 # Set the value of this setting to true to log all events, including system usage information
55 # and all requests.
56 #logging.verbose: false