2013-01-25 22:10:28 -06:00
|
|
|
/*
|
|
|
|
|
2013-05-22 13:50:49 -05:00
|
|
|
elasticsearch: URL to your elasticsearch server. You almost certainly don't
|
|
|
|
want 'http://localhost:9200' here. Even if Kibana and ES are on
|
|
|
|
the same host
|
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-05-02 18:46:26 -05:00
|
|
|
// By default this will attempt to reach ES at the same host you have
|
2013-05-06 13:05:54 -05:00
|
|
|
// elasticsearch installed on. You probably want to set it to the FQDN of your
|
2013-05-02 18:46:26 -05:00
|
|
|
// elasticsearch host
|
2013-05-29 18:30:48 -05:00
|
|
|
elasticsearch: "http://"+window.location.hostname+":9200",
|
2013-05-02 18:46:26 -05:00
|
|
|
// elasticsearch: 'http://localhost:9200',
|
|
|
|
kibana_index: "kibana-int",
|
2013-07-14 23:42:35 -05:00
|
|
|
modules: ['histogram','map','pie','table','filtering',
|
2013-05-02 18:46:26 -05:00
|
|
|
'timepicker','text','fields','hits','dashcontrol',
|
2013-07-26 16:35:27 -05:00
|
|
|
'column','derivequeries','trends','bettermap','query',
|
|
|
|
'terms'],
|
2013-01-25 22:10:28 -06:00
|
|
|
}
|
2013-01-29 11:05:02 -06:00
|
|
|
);
|