mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 04:02:50 -06:00
22 lines
764 B
JavaScript
22 lines
764 B
JavaScript
/*
|
|
|
|
elasticsearch: URL to your elasticsearch server
|
|
kibana_index: The default ES index to use for storing Kibana specific object
|
|
such as stored dashboards
|
|
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
|
|
|
|
If you need to configure the default dashboard, please see dashboards/default
|
|
|
|
*/
|
|
var config = new Settings(
|
|
{
|
|
elasticsearch: 'http://localhost:9200',
|
|
kibana_index: "kibana-int",
|
|
modules: ['histogram','map','map2','pie','table','stringquery','sort',
|
|
'timepicker','text','fields','hits','dashcontrol',
|
|
'column'],
|
|
}
|
|
);
|