config.js 1.1 KB

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