No description
Find a file
Roman Heinrich 2000ef2324 gemfile.lock
2013-03-11 13:30:22 +02:00
bin rename Riemann::Dash -> Riemann::Dash::App + move sinatra app to app.rb 2013-03-11 13:10:19 +02:00
example
lib/riemann config class + test 2013-03-11 13:30:12 +02:00
sh play in sandbox 2013-03-11 12:49:23 +02:00
test config class + test 2013-03-11 13:30:12 +02:00
.gitignore
Gemfile gemfile to use bundler for dependencies 2013-03-11 12:26:17 +02:00
Gemfile.lock gemfile.lock 2013-03-11 13:30:22 +02:00
LICENSE
Rakefile.rb rake test task 2013-03-11 13:29:21 +02:00
README.markdown readme for REPL 2013-03-11 13:10:34 +02:00
riemann-dash.gemspec a proper gemspec 2013-03-11 12:25:45 +02:00

Riemann-Dash

A javascript, websockets-powered dashboard for Riemann.

Get started

gem install riemann-dash
riemann-dash

Then open http://localhost:4567 in a browser. Riemann-dash will connect to the local host (relative to your browser) by default, and show you a small manual.

Configuring

Riemann-dash takes an optional config file, which you can specify as the first command-line argument. If none is given, it looks for a file in the local directory: config.rb. That file can override any configuration options on the Dash class, and hence, all Sinatra configuration.

set :port, 6000 # HTTP server on port 6000
config[:ws_config] = 'custom/config.json' # Specify custom workspace config

Development

$ git clone git://github.com/mindreframer/riemann-dash.git
$ cd riemann-dash
$ bundle

Releasing

$ rake build
$ rake release

REPL

$ sh/c
> irb :001 > Riemann::Dash::VERSION
> => "0.2.2"