0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
This gem packages up Kibana 3 into a Sinatra app that can be used stand alone, or with Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

~> 1.4
 Project Readme

Kibana::Sinatra

Dependency Status Build Status Gem Version

This gem provides Kibana 3 inside a Sinatra app that you can include in any Rack based system, including Rails.

Deprecation Notice

With the release of Kibana 4, I believe this gem should now be considered deprecated. Kibana 4 requires that a server be running in the backend in order for the front end JS to work. At this time I am not sure how feasable it is to wrap up that server in a Sinatra or a Rack app. Perhaps the folks at kibana-rack will update and handle it? In the meantime I have been running the app inside a Docker container: marcbachmann/kibana4

Installation

Add this line to your application's Gemfile:

gem 'kibana-sinatra'

And then execute:

$ bundle

Or install it yourself as:

$ gem install kibana-sinatra

Usage

Inside Rails

First you will need to configure Kibana's config.js file so that a web browser can find your elasticsearch cluster.

Create a new file in config/initializers and include the following code. Replace the strings with the location of your elasticsearch cluster and the kibana index. You may also set the default_route. Note that all of these are optional. Please refer to the Kibana config file for explanations of what these settings do.

module Kibana::Sinatra
  class Web
    def elasticsearch_url
      "http://\"+window.location.hostname+\":9200"
    end

    def kibana_index
      "kibana-int"
    end

    def default_route
      "/dashboard/elasticsearch/asdf"
    end
  end
end

In your config/routes.rb file mount the Kibana::Sinatra::Web class to a route:

mount Kibana::Sinatra::Web => '/kibana', :trailing_slash => true

The trailing slash is important due to the way Kibana links to CSS & JS files.

Start your server and you should now be able to load /kibana/ and Kibana 3 should start up!

Launch as Rack app

First you will need to configure Kibana's config.js same as "Inside Rails".

And add config.ru on top of your directory.

require 'sinatra'
require 'kibana/sinatra/web'

# If you need to configure elasticsearch_url, put your configuration here just like the Rails example.

run Kibana::Sinatra::Web

At last, you need to just run rackup.

rackup

Custom dashboards

If you would like to include custom dashboard JSON files you can do so by overriding the render_dashboard(name) method. This method requires a single parameter name that will contain the filename requested. For example, if the browser requests /app/dashboards/test.json, then test.json will be assigned to the name parameter.

This method should return the JSON as a string.

You could then make that JSON file the default by overriding default_route.

Here is a full example:

module Kibana::Sinatra
  class Web

    def render_dashboard(name)
      case name
      when "test.json"
        "{}"
      when "asdf.json"
        {}.to_json
      end
    end

    def default_route
      "/dashboard/file/test.json"
    end
  end
end

Please note there are some built in dashboard files that you will NOT be able to override.

Versions

Kibana-sinatra's version number will match the upstream Kibana version number, plus an additional build number. For example:

Kibana-sinatra v.3.0.0.0 is equivalent to upstream Kibana v.3.0.0, and is our build 0.

We aim to keep in step with Kibana's released versions.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Contributors

Thanks for all the help to our awesome contributors!