config.js.asciidoc 938 B

1234567891011121314151617181920212223242526272829303132
  1. = Kibana =
  2. == Configuration ==
  3. config.js is where you will find the core Kibana configuration. This file contains parameter that
  4. must be set before kibana is run for the first time.
  5. // src/config.js:1
  6. === Parameters ===
  7. // src/config.js:13
  8. ==== elasticsearch ====
  9. The URL to your elasticsearch server. You almost certainly don't
  10. want +http://localhost:9200+ here. Even if Kibana and Elasticsearch are on
  11. the same host. By default this will attempt to reach ES at the same host you have
  12. elasticsearch installed on. You probably want to set it to the FQDN of your
  13. elasticsearch host
  14. // src/config.js:18
  15. ==== kibana-int ====
  16. The default ES index to use for storing Kibana specific object
  17. such as stored dashboards
  18. // src/config.js:29
  19. ==== panel_name ====
  20. An array of panel modules available. Panels will only be loaded when they are defined in the
  21. dashboard, but this list is used in the "add panel" interface.
  22. // src/config.js:37