kibana/config.js

57 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-11-12 20:57:20 +01:00
/**
* These is the app's configuration, If you need to configure
* the default dashboard, please see dashboards/default
*/
define(['settings'],
function (Settings) {
2013-11-15 22:35:13 +01:00
2013-11-12 20:57:20 +01:00
return new Settings({
/**
* 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
*
* By default this will attempt to reach ES at the same host you have
* elasticsearch installed on. You probably want to set it to the FQDN of your
* elasticsearch host
* @type {String}
*/
2013-11-15 22:35:13 +01:00
elasticsearch: "http://"+window.location.hostname+":"+@@port,
2013-11-12 20:57:20 +01:00
/**
* The default ES index to use for storing Kibana specific object
* such as stored dashboards
* @type {String}
*/
kibana_index: ".kibana-int",
2013-11-12 20:57:20 +01:00
/**
* 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.
* @type {Array}
*/
panel_names: [
'histogram',
2013-11-15 22:35:13 +01:00
'map',
'pie',
2013-11-12 20:57:20 +01:00
'table',
'filtering',
'timepicker',
'text',
2013-11-15 22:35:13 +01:00
'fields',
2013-11-12 20:57:20 +01:00
'hits',
'dashcontrol',
2013-11-15 22:35:13 +01:00
'column',
'derivequeries',
2013-11-12 20:57:20 +01:00
'trends',
2013-11-15 22:35:13 +01:00
'bettermap',
'query',
'terms',
'sparklines',
'marvel/stats_table'
2013-11-12 20:57:20 +01:00
]
});
});