config.js 786 B

123456789101112131415161718192021
  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. elasticsearch: 'http://localhost:9200',
  13. kibana_index: "kibana-int",
  14. modules: ['histogram','map','map2','pie','table','stringquery','sort',
  15. 'timepicker','text','fields','hits','dashcontrol',
  16. 'column', 'parallelcoordinates'],
  17. }
  18. );