mirror of
https://github.com/grafana/grafana.git
synced 2025-01-08 23:23:45 -06:00
22 lines
750 B
JavaScript
22 lines
750 B
JavaScript
/*
|
|
|
|
elasticsearch: URL to your elasticsearch server
|
|
timeformat: Format for time in histograms (might go away)
|
|
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
|
|
|
|
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(
|
|
{
|
|
elasticsearch: 'http://demo.logstash.net:9200',
|
|
timeformat: 'mm/dd HH:MM:ss',
|
|
modules: ['histogram','map','pie','table','stringquery','sort',
|
|
'timepicker','text','fields','hits','dashcontrol'],
|
|
}
|
|
);
|