2013-01-25 22:10:28 -06:00
|
|
|
/*
|
|
|
|
|
2013-02-06 15:14:17 -06:00
|
|
|
elasticsearch: URL to your elasticsearch server
|
2013-03-05 10:54:29 -06:00
|
|
|
kibana_index: The default ES index to use for storing Kibana specific object
|
|
|
|
such as stored dashboards
|
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
|
|
|
|
2013-03-20 23:27:07 -05:00
|
|
|
If you need to configure the default dashboard, please see dashboards/default
|
2013-01-25 22:10:28 -06:00
|
|
|
|
|
|
|
*/
|
|
|
|
var config = new Settings(
|
|
|
|
{
|
2013-03-12 11:20:18 -05:00
|
|
|
elasticsearch: 'http://localhost:9200',
|
2013-03-08 11:04:38 -06:00
|
|
|
kibana_index: "kibana-int",
|
2013-04-04 19:55:50 -05:00
|
|
|
modules: ['histogram','map','map2','pie','table','stringquery','sort',
|
2013-03-08 11:04:38 -06:00
|
|
|
'timepicker','text','fields','hits','dashcontrol',
|
2013-04-16 14:15:34 -05:00
|
|
|
'column', 'parallelcoordinates'],
|
2013-01-25 22:10:28 -06:00
|
|
|
}
|
2013-01-29 11:05:02 -06:00
|
|
|
);
|