2013-01-25 20:10:28 -08:00
|
|
|
/*
|
|
|
|
|
|
2013-02-06 14:14:17 -07:00
|
|
|
elasticsearch: URL to your elasticsearch server
|
2013-03-05 09:54:29 -07:00
|
|
|
kibana_index: The default ES index to use for storing Kibana specific object
|
|
|
|
|
such as stored dashboards
|
2013-01-25 20:10:28 -08:00
|
|
|
timeformat: Format for time in histograms (might go away)
|
2013-01-29 10:05:02 -07: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 20:10:28 -08:00
|
|
|
|
2013-03-08 10:04:38 -07:00
|
|
|
NOTE: No timezone support yet, everything is in UTC at the moment.
|
2013-01-25 20:10:28 -08:00
|
|
|
|
2013-03-08 10:04:38 -07:00
|
|
|
If you need to configure the default dashboard, please see default.json
|
2013-01-25 20:10:28 -08:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
var config = new Settings(
|
|
|
|
|
{
|
2013-03-08 10:55:31 -07:00
|
|
|
elasticsearch: 'http://demo.kibana.org',
|
2013-03-08 10:04:38 -07:00
|
|
|
kibana_index: "kibana-int",
|
|
|
|
|
timeformat: 'mm/dd HH:MM:ss',
|
|
|
|
|
modules: ['histogram','map','pie','table','stringquery','sort',
|
|
|
|
|
'timepicker','text','fields','hits','dashcontrol',
|
|
|
|
|
'column'],
|
2013-01-25 20:10:28 -08:00
|
|
|
}
|
2013-01-29 10:05:02 -07:00
|
|
|
);
|