config.js 742 B

123456789101112131415161718192021
  1. /*
  2. elasticsearch: URL to your elasticsearch server
  3. timeformat: Format for time in histograms (might go away)
  4. modules: Panel modules to load. In the future these will be inferred
  5. from your initial dashboard, though if you share dashboards you
  6. will probably need to list them all here
  7. NOTE: No timezone support yet, everything is in UTC at the moment.
  8. If you need to configure the default dashboard, please see dashboard.js
  9. */
  10. var config = new Settings(
  11. {
  12. elasticsearch: 'http://localhost:9200',
  13. timeformat: 'mm/dd HH:MM:ss',
  14. modules: ['histogram','map','pie','table','stringquery','sort',
  15. 'timepicker','text','fields','hits','dashcontrol'],
  16. }
  17. );