config.js 1.0 KB

12345678910111213141516171819202122232425
  1. /*
  2. elasticsearch: URL to your elasticsearch server
  3. kibana_index: The default ES index to use for storing Kibana specific object
  4. such as stored dashboards
  5. modules: Panel modules to load. In the future these will be inferred
  6. from your initial dashboard, though if you share dashboards you
  7. will probably need to list them all here
  8. If you need to configure the default dashboard, please see dashboards/default
  9. */
  10. var config = new Settings(
  11. {
  12. // By default this will attempt to reach ES at the same host you have
  13. // elasticsearch installed on. You probably want to set it to the FQDN of your
  14. // elasticsearch host
  15. elasticsearch: "http://"+window.location.hostname+":9200",
  16. // elasticsearch: 'http://localhost:9200',
  17. kibana_index: "kibana-int",
  18. modules: ['histogram','map','pie','table','stringquery','sort',
  19. 'timepicker','text','fields','hits','dashcontrol',
  20. 'column','derivequeries'],
  21. }
  22. );