2013-01-25 22:10:28 -06:00
|
|
|
/*
|
|
|
|
|
2013-02-06 15:14:17 -06:00
|
|
|
elasticsearch: URL to your elasticsearch server
|
2013-01-25 22:10:28 -06:00
|
|
|
timeformat: Format for time in histograms (might go away)
|
2013-01-29 11:05:02 -06:00
|
|
|
modules: Panel modules to load. In the future these will be inferred
|
|
|
|
from your initial dashboard, though if you share dashboards you
|
|
|
|
will probably need to list them all here
|
2013-01-25 22:10:28 -06:00
|
|
|
|
|
|
|
NOTE: No timezone support yet, everything is in UTC at the moment.
|
|
|
|
|
|
|
|
If you need to configure the default dashboard, please see dashboard.js
|
|
|
|
|
|
|
|
*/
|
|
|
|
var config = new Settings(
|
|
|
|
{
|
2013-02-27 11:45:50 -06:00
|
|
|
elasticsearch: 'http://localhost:9200',
|
2013-01-25 22:10:28 -06:00
|
|
|
timeformat: 'mm/dd HH:MM:ss',
|
2013-02-04 18:05:36 -06:00
|
|
|
modules: ['histogram','map','pie','table','stringquery','sort',
|
2013-02-15 16:23:04 -06:00
|
|
|
'timepicker','text','fields','hits','dashcontrol'],
|
2013-01-25 22:10:28 -06:00
|
|
|
}
|
2013-01-29 11:05:02 -06:00
|
|
|
);
|