kibana-sinatra 3.1.1.0 → 3.1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42a24f6644365d6e9ec2c9a9fca3bf4101d88217
4
- data.tar.gz: 9e00965d345f23a7299aba04689a2127ab79fd22
3
+ metadata.gz: be3b44aa25d39a205b25267a74ce79579c9fb6c9
4
+ data.tar.gz: 3d0ca8b23f8bd12767ac23006446783086ae5b21
5
5
  SHA512:
6
- metadata.gz: 23127982f74f767ee8732d9a99f155785acf0624492ba76fb71d3de4c929affed233ed7ff01ad20da915947e47d422d3ec3fb595fc305df02ab0e3e660151009
7
- data.tar.gz: 966859ccd8652a412a47aaf7613fb49f1ec118dfa97e7e26992a2ff1991dcc0b7b0224aefb07ac84c5bbb3d5f4fac05137e8ffaccfef2ba5a29818cd4ab21787
6
+ metadata.gz: 5afae95b378fbacf9386d898df649e4df07d178050ad08723bfe0db785274d0c76f7f5f4c2a1e4e98c8d991d810c4c02190366102b68e79af906760663467c38
7
+ data.tar.gz: c3a261f116e825ceeee673c1218655489e9f868972cb34abfd06237095343fb7dc4c2396d061f128cd26d2254e2fc8f27bc533f189cbb2914223d5a51ae23b78
@@ -0,0 +1,6 @@
1
+ require 'kibana/assets/server/lib/app'
2
+
3
+ # If you need to configure elasticsearch_url, put your configuration here just like the Rails example.
4
+
5
+
6
+ run Kibana::App
@@ -9,8 +9,13 @@
9
9
  <h5>Possibility #1: Your elasticsearch server is down or unreachable</h5>
10
10
  This can be caused by a network outage, or a failure of the Elasticsearch process. If you have recently run a query that required a <i>terms</i> facet to be executed it is possible the process has run out of memory and stopped. Be sure to check your Elasticsearch logs for any sign of memory pressure.
11
11
  <h5>Possibility #2: You are running Elasticsearch 1.4 or higher</h5>
12
- Elasticsearch 1.4 ships with a security setting that prevents Kibana from connecting. You will need to set <i>http.cors.allow-origin</i> in your <i>elasticsearch.yml</i> to the correct protocol, hostname, and port (if not 80) that your access Kibana from. Note that if you are running Kibana in a sub-url, you should exclude the sub-url path and only include the protocol, hostname and port. For example, <i>http://mycompany.com:8080</i>, not <i>http://mycompany.com:8080/kibana</i>.
13
-
12
+ Elasticsearch 1.4 ships with a security setting that prevents Kibana from connecting. You will need to set the following in your elasticsearch.yml:
13
+ <p>
14
+ <ol>
15
+ <li> <i>http.cors.enabled: true</i> </li>
16
+ <li> <i>http.cors.allow-origin</i> to the correct protocol, hostname, and port (if not 80) that your access Kibana from. Note that if you are running Kibana in a sub-url, you should exclude the sub-url path and only include the protocol, hostname and port. For example, <i>http://mycompany.com:8080</i>, not <i>http://mycompany.com:8080/kibana</i>.</li>
17
+ </ol>
18
+ </p>
14
19
  <h5>Click back, or the home button, when you have resolved the connection issue</h5>
15
20
  </ol>
16
21
  </div>
@@ -1,5 +1,5 @@
1
1
  module Kibana
2
2
  module Sinatra
3
- VERSION = "3.1.1.0"
3
+ VERSION = "3.1.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kibana-sinatra
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1.0
4
+ version: 3.1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Neubert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-02 00:00:00.000000000 Z
11
+ date: 2014-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -122,6 +122,7 @@ files:
122
122
  - LICENSE.txt
123
123
  - README.md
124
124
  - Rakefile
125
+ - config.ru
125
126
  - kibana-sinatra.gemspec
126
127
  - lib/kibana/assets/app/app.js
127
128
  - lib/kibana/assets/app/components/extend-jquery.js