config.js 919 B

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. timeformat: Format for time in histograms (might go away)
  6. modules: Panel modules to load. In the future these will be inferred
  7. from your initial dashboard, though if you share dashboards you
  8. will probably need to list them all here
  9. NOTE: No timezone support yet, everything is in UTC at the moment.
  10. If you need to configure the default dashboard, please see default.json
  11. */
  12. var config = new Settings(
  13. {
  14. elasticsearch: 'http://localhost:9200',
  15. kibana_index: "kibana-int",
  16. timeformat: 'mm/dd HH:MM:ss',
  17. modules: ['histogram','map','pie','table','stringquery','sort',
  18. 'timepicker','text','fields','hits','dashcontrol',
  19. 'column'],
  20. }
  21. );