module Kibana
Constants
- DEFAULT_ELASTICSEARCH_HOST
- DEFAULT_ELASTICSEARCH_PORT
- DEFAULT_KIBANA_DASHBOARDS_PATH
- DEFAULT_KIBANA_DEFAULT_ROUTE
- DEFAULT_KIBANA_INDEX
Attributes
elasticsearch_host[RW]
The hostname of the Elasticsearch instance to proxy to. @return [String]
elasticsearch_port[RW]
The port of the Elasticsearch instance to proxy to. @return [Fixnum]
kibana_dashboards_path[RW]
The filesystem path to look for Kibana
dashboards. @return [String]
kibana_default_route[RW]
The default client-side location that Kibana
navigates to. @return [String]
kibana_index[RW]
The name of the internal Elasticsearch index Kibana
uses to store metadata and dashboards. @return [String]
Public Class Methods
configure(&block)
click to toggle source
Yields the {Kibana} module to allow configuration of global settings.
# File lib/kibana/rack.rb, line 37 def configure(&block) block.call(self) end