kibana.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # Kibana is served by a back end server. This setting specifies the port to use.
  2. #server.port: 5601
  3. xpack.monitoring.enabled: false
  4. xpack.security.enabled: false
  5. # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
  6. # The default is 'localhost', which usually means remote machines will not be able to connect.
  7. # To allow connections from remote users, set this parameter to a non-loopback address.
  8. server.host: '0.0.0.0'
  9. # Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
  10. # the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
  11. # to Kibana. This setting cannot end in a slash.
  12. #server.basePath: ""
  13. # The maximum payload size in bytes for incoming server requests.
  14. #server.maxPayloadBytes: 1048576
  15. # The Kibana server's name. This is used for display purposes.
  16. #server.name: "your-hostname"
  17. # The URL of the Elasticsearch instance to use for all your queries.
  18. elasticsearch.url: 'http://elasticsearch:9200'
  19. # When this setting's value is true Kibana uses the hostname specified in the server.host
  20. # setting. When the value of this setting is false, Kibana uses the hostname of the host
  21. # that connects to this Kibana instance.
  22. #elasticsearch.preserveHost: true
  23. # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
  24. # dashboards. Kibana creates a new index if the index doesn't already exist.
  25. #kibana.index: ".kibana"
  26. # The default application to load.
  27. #kibana.defaultAppId: "discover"
  28. # If your Elasticsearch is protected with basic authentication, these settings provide
  29. # the username and password that the Kibana server uses to perform maintenance on the Kibana
  30. # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
  31. # is proxied through the Kibana server.
  32. #elasticsearch.username: "user"
  33. #elasticsearch.password: "pass"
  34. # Paths to the PEM-format SSL certificate and SSL key files, respectively. These
  35. # files enable SSL for outgoing requests from the Kibana server to the browser.
  36. #server.ssl.cert: /path/to/your/server.crt
  37. #server.ssl.key: /path/to/your/server.key
  38. # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
  39. # These files validate that your Elasticsearch backend uses the same key files.
  40. #elasticsearch.ssl.cert: /path/to/your/client.crt
  41. #elasticsearch.ssl.key: /path/to/your/client.key
  42. # Optional setting that enables you to specify a path to the PEM file for the certificate
  43. # authority for your Elasticsearch instance.
  44. #elasticsearch.ssl.ca: /path/to/your/CA.pem
  45. # To disregard the validity of SSL certificates, change this setting's value to false.
  46. #elasticsearch.ssl.verify: true
  47. # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
  48. # the elasticsearch.requestTimeout setting.
  49. #elasticsearch.pingTimeout: 1500
  50. # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
  51. # must be a positive integer.
  52. #elasticsearch.requestTimeout: 30000
  53. # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
  54. # headers, set this value to [] (an empty list).
  55. #elasticsearch.requestHeadersWhitelist: [ authorization ]
  56. # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
  57. # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
  58. #elasticsearch.customHeaders: {}
  59. # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
  60. #elasticsearch.shardTimeout: 0
  61. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
  62. #elasticsearch.startupTimeout: 5000
  63. # Specifies the path where Kibana creates the process ID file.
  64. #pid.file: /var/run/kibana.pid
  65. # Enables you specify a file where Kibana stores log output.
  66. #logging.dest: stdout
  67. # Set the value of this setting to true to suppress all logging output.
  68. #logging.silent: false
  69. # Set the value of this setting to true to suppress all logging output other than error messages.
  70. #logging.quiet: false
  71. # Set the value of this setting to true to log all events, including system usage information
  72. # and all requests.
  73. #logging.verbose: false
  74. # Set the interval in milliseconds to sample system and process performance
  75. # metrics. Minimum is 100ms. Defaults to 5000.
  76. #ops.interval: 5000