|
|
@@ -1,5 +1,5 @@
|
|
|
/** @scratch /configuration/config.js/1
|
|
|
- * == Configuration ==
|
|
|
+ * == Configuration
|
|
|
* config.js is where you will find the core Kibana configuration. This file contains parameter that
|
|
|
* must be set before kibana is run for the first time.
|
|
|
*/
|
|
|
@@ -8,12 +8,12 @@ function (Settings) {
|
|
|
"use strict";
|
|
|
|
|
|
/** @scratch /configuration/config.js/2
|
|
|
- * === Parameters ===
|
|
|
+ * === Parameters
|
|
|
*/
|
|
|
return new Settings({
|
|
|
|
|
|
/** @scratch /configuration/config.js/5
|
|
|
- * ==== elasticsearch ====
|
|
|
+ * ==== elasticsearch
|
|
|
*
|
|
|
* The URL to your elasticsearch server. You almost certainly don't
|
|
|
* want +http://localhost:9200+ here. Even if Kibana and Elasticsearch are on
|
|
|
@@ -24,7 +24,18 @@ function (Settings) {
|
|
|
elasticsearch: "http://"+window.location.hostname+":9200",
|
|
|
|
|
|
/** @scratch /configuration/config.js/5
|
|
|
- * ==== kibana-int ====
|
|
|
+ * ==== default_route
|
|
|
+ *
|
|
|
+ * This is the default landing page when you don't specify a dashboard to load. You can specify
|
|
|
+ * files, scripts or saved dashboards here. For example, if you had saved a dashboard called
|
|
|
+ * `WebLogs' to elasticsearch you might use:
|
|
|
+ *
|
|
|
+ * +default_route: '/dashboard/elasticsearch/WebLogs',+
|
|
|
+ */
|
|
|
+ default_route : '/dashboard/file/default.json',
|
|
|
+
|
|
|
+ /** @scratch /configuration/config.js/5
|
|
|
+ * ==== kibana-int
|
|
|
*
|
|
|
* The default ES index to use for storing Kibana specific object
|
|
|
* such as stored dashboards
|
|
|
@@ -32,7 +43,7 @@ function (Settings) {
|
|
|
kibana_index: "kibana-int",
|
|
|
|
|
|
/** @scratch /configuration/config.js/5
|
|
|
- * ==== panel_name ====
|
|
|
+ * ==== panel_name
|
|
|
*
|
|
|
* An array of panel modules available. Panels will only be loaded when they are defined in the
|
|
|
* dashboard, but this list is used in the "add panel" interface.
|
|
|
@@ -46,7 +57,6 @@ function (Settings) {
|
|
|
'timepicker',
|
|
|
'text',
|
|
|
'hits',
|
|
|
- 'dashcontrol',
|
|
|
'column',
|
|
|
'trends',
|
|
|
'bettermap',
|