kibana.yml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # Kibana is served by a back end server. This setting specifies the port to use.
  2. #server.port: 5601
  3. # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
  4. # The default is 'localhost', which usually means remote machines will not be able to connect.
  5. # To allow connections from remote users, set this parameter to a non-loopback address.
  6. server.host: "0.0.0.0"
  7. # Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
  8. # the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
  9. # to Kibana. This setting cannot end in a slash.
  10. #server.basePath: ""
  11. # The maximum payload size in bytes for incoming server requests.
  12. #server.maxPayloadBytes: 1048576
  13. # The Kibana server's name. This is used for display purposes.
  14. #server.name: "your-hostname"
  15. # The URL of the Elasticsearch instance to use for all your queries.
  16. elasticsearch.url: "http://elk-es:9200"
  17. elasticsearch.username: "elastic"
  18. elasticsearch.password: "changeme"
  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. # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
  35. # These settings enable SSL for outgoing requests from the Kibana server to the browser.
  36. #server.ssl.enabled: false
  37. #server.ssl.certificate: /path/to/your/server.crt
  38. #server.ssl.key: /path/to/your/server.key
  39. # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
  40. # These files validate that your Elasticsearch backend uses the same key files.
  41. #elasticsearch.ssl.certificate: /path/to/your/client.crt
  42. #elasticsearch.ssl.key: /path/to/your/client.key
  43. # Optional setting that enables you to specify a path to the PEM file for the certificate
  44. # authority for your Elasticsearch instance.
  45. #elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]
  46. # To disregard the validity of SSL certificates, change this setting's value to 'none'.
  47. #elasticsearch.ssl.verificationMode: full
  48. # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
  49. # the elasticsearch.requestTimeout setting.
  50. #elasticsearch.pingTimeout: 1500
  51. # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
  52. # must be a positive integer.
  53. #elasticsearch.requestTimeout: 30000
  54. # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
  55. # headers, set this value to [] (an empty list).
  56. #elasticsearch.requestHeadersWhitelist: [ authorization ]
  57. # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
  58. # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
  59. #elasticsearch.customHeaders: {}
  60. # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
  61. #elasticsearch.shardTimeout: 0
  62. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
  63. #elasticsearch.startupTimeout: 5000
  64. # Specifies the path where Kibana creates the process ID file.
  65. #pid.file: /var/run/kibana.pid
  66. # Enables you specify a file where Kibana stores log output.
  67. #logging.dest: stdout
  68. # Set the value of this setting to true to suppress all logging output.
  69. #logging.silent: false
  70. # Set the value of this setting to true to suppress all logging output other than error messages.
  71. #logging.quiet: false
  72. # Set the value of this setting to true to log all events, including system usage information
  73. # and all requests.
  74. #logging.verbose: false
  75. # Set the interval in milliseconds to sample system and process performance
  76. # metrics. Minimum is 100ms. Defaults to 5000.
  77. #ops.interval: 5000
  78. # The default locale. This locale can be used in certain circumstances to substitute any missing
  79. # translations.
  80. #i18n.defaultLocale: "en"