config.js.asciidoc 925 B

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