Kibana.yml
# Kibana is served by a back end server. This setting specifies the port to use.
#端口
server.port:5601
# Specifies the address to which the Kibana server would bind. IP addresses and host names is both valid values.
# The default is ' localhost ', which usually means remote machines would not being able to connect.
# to allow connections from the remote users, set this parameter to a non-loopback address.
#地址
Server.host: "0.0.0.0"
# enables specify a path to mount Kibana at if you are running behind a proxy. This is only affects
# The URLs generated by Kibana, your proxy are expected to remove the BasePath value before forwarding requests
# to Kibana. This setting cannot end in a slash.
#server. BasePath: ""
# The maximum payload size in bytes for incoming server requests.
#server. maxpayloadbytes:1048576
# The Kibana server ' s name. This is used for display purposes.
#server. Name: "Your-hostname"
# The URL of the Elasticsearch instance to use for all your queries.
#es地址
Elasticsearch.url: "http://192.168.10.196:9200"
# When this setting ' s value was true Kibana uses the hostname specified in the Server.host
# setting. When the value of this setting is False, Kibana uses the hostname of the host
# That's connects to this Kibana instance.
#elasticsearch. preservehost:true
# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
# dashboards. Kibana creates a new index if the index doesn ' t already exist.
#默认索引
Kibana.index: ". Kibana"
# The default application to load.
#kibana. Defaultappid: "Home"
# If your Elasticsearch is protected with basic authentication, these settings provide
# The username and password that the Kibana server uses to perform maintenance on the Kibana
# Index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
#elasticsearch. Username: "User"
#elasticsearch. Password: "Pass"
# Enables SSL and paths to the Pem-format SSL certificate and SSL key files, respectively.
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
#server. Ssl.enabled:false
#server. Ssl.certificate:/PATH/TO/YOUR/SERVER.CRT
#server. Ssl.key:/path/to/your/server.key
# Optional settings that provide the paths to the Pem-format SSL certificate and key files.
# These files validate that your Elasticsearch backend uses the same key files.
#elasticsearch. Ssl.certificate:/PATH/TO/YOUR/CLIENT.CRT
#elasticsearch. Ssl.key:/path/to/your/client.key
# Optional setting that enables you to specify a path to the PEM file for the certificate
# Authority for your Elasticsearch instance.
#elasticsearch. Ssl.certificateauthorities: ["/path/to/your/ca.pem"]
# to disregard the validity of SSL certificates, change this setting ' s value to ' none '.
#elasticsearch. Ssl.verificationMode:full
# time in milliseconds-to-wait for Elasticsearch-respond to pings. Defaults to the value of
# The Elasticsearch.requesttimeout setting.
#elasticsearch. pingtimeout:1500
#elasticsearch. pingtimeout:3000
# time in milliseconds-to-wait for responses from the back end or Elasticsearch. This value
# must be a positive integer.
#超时时间
elasticsearch.requesttimeout:90000
# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
# headers, set this value to [] (an empty list).
#elasticsearch. Requestheaderswhitelist: [Authorization]
# Header names and values that is sent to Elasticsearch. Any custom headers cannot is overwritten
# by Client-side headers, regardless of the elasticsearch.requestheaderswhitelist configuration.
#elasticsearch. Customheaders: {}
# time in milliseconds-Elasticsearch to-wait for responses from shards. Set to 0 to disable.
#elasticsearch. shardtimeout:0
# time in milliseconds-to-wait for Elasticsearch at Kibana startup before retrying.
#elasticsearch. startuptimeout:5000
# Specifies the path where Kibana creates the process ID file.
#pid. File:/var/run/kibana.pid
# enables you specify a file where Kibana stores log output.
#logging. dest:stdout
# Set The value of this setting to true to suppress all logging output.
#logging. Silent:false
# Set The value of this setting to true to suppress all logging output and other than error messages.
#logging. Quiet:false
# Set The value of this setting to true to log all events, including system usage information
# and all requests.
#logging. Verbose:false
# Set the interval in milliseconds to sample system and process performance
# metrics. Minimum is 100ms. Defaults to 5000.
#ops. interval:5000
# the default locale. This locale can is used in certain circumstances to substitute any missing
# translations.
#i18n. Defaultlocale: "EN"
#关闭xpack验证
Xpack.security.enabled:false
#地图
Tilemap.url: ' Http://webrd02.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x} &y={y}&z={z} '
Elk Deployment Detailed--kibana