Sha256: 35d6be6074cfcc1bcc9a65c52b7f1be639456c9c105581416d4ae202204c1bb2
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
/** * These is the app's configuration, If you need to configure * the default dashboard, please see dashboards/default */ define(['settings'], function (Settings) { "use strict"; 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} */ elasticsearch: "<%= elasticsearch_url %>", /** * The default ES index to use for storing Kibana specific object * such as stored dashboards * @type {String} */ kibana_index: "<%= kibana_index %>", /** * 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', 'map', 'pie', 'table', 'filtering', 'timepicker', 'text', 'fields', 'hits', 'dashcontrol', 'column', 'derivequeries', 'trends', 'bettermap', 'query', 'terms', 'sparklines' ] }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kibana-sinatra-0.0.5 | lib/kibana/views/config.erb |