fiveruns / dash-sinatra

FiveRuns Dash recipe for Sinatra

This URL has Read+Write access

commit  86c55b8cc9dd171aeb90b311ddc8339dc9469da5
tree    78f6a49ef987625f8bb69725f59bd40244f5b47f
parent  0c7d2d0c5e1302651a81aafd26e0ac77bbdb25f3
name age message
file README.rdoc Fri Jan 30 19:06:32 -0800 2009 Move to canonical path Tweak docs Add sinatra r... [bruce]
file Rakefile Fri Jan 30 12:11:26 -0800 2009 Let us begin with some Gem infrastructure. [therealadam]
file dash-sinatra.gemspec Fri Jan 30 19:16:24 -0800 2009 Bump gemspec to 0.7.5 [bruce]
directory examples/ Sat Jan 31 15:52:53 -0800 2009 Yield config so additional, custom recipes can ... [bruce]
directory lib/ Mon Mar 09 10:07:43 -0700 2009 Instrument Sinatra::Base instead of Sinatra::Ap... [therealadam]
file version.yml Loading commit data...
README.rdoc

FiveRuns Dash recipe for Sinatra

Provides a Ruby API to push metrics from a Sinatra app to the FiveRuns Dash service, dash.fiveruns.com, currently in beta.

You’ll need a Dash account before using this library.

Installation

This library is released as a gem from the official repository at github.com/fiveruns/dash-sinatra

  sudo gem install fiveruns-dash-sinatra --source 'http://gems.github.com'

Usage

First you’ll need a token for your Sinatra application. Create a new Ruby app in Dash (dash.fiveruns.com) and copy the token.

Make sure you require the Dash Sinatra recipe:

  require 'fiveruns/dash/sinatra'

Now, in your configure block, start up Dash:

  Fiveruns::Dash::Sinatra.start('the-dash-token-you-copied')

Fire up your Sinatra app; you should see it send some environmental information to Dash. Periodically, a background thread will upload your metrics to Dash.

Caveats

Sinatra adds a route for serving static files from your public folder. If you run Dash in development, these requests will color your requests and response time statistics. If you are using Nginx or Apache to public in your production app, your metrics will be fine.

Authors

The FiveRuns Development Team & Dash community

Dependencies

Sinatra versions

Dash has been tested with Sinatra 0.9.0. It may work with later versions, but almost certainly doesn’t work with earlier versions (0.3.x).

Contributing

As an open source project, we welcome community contributions!

The best way to contribute is by sending pull requests via GitHub. The official repository for this project is:

  http://github.com/fiveruns/dash-sinatra

Support

Please join the dash-users Google group, groups.google.com/group/dash-users

You can also contact us via Twitter, Campfire, or email; see the main help page, dash.fiveruns.com/help, for details.

License

  # (The FiveRuns License)
  #
  # Copyright (c) 2006-2009 FiveRuns Corporation
  #
  # Permission is hereby granted, free of charge, to any person obtaining
  # a copy of this software and associated documentation files (the
  # 'Software'), to deal in the Software without restriction, including
  # without limitation the rights to use, copy, modify, merge, publish,
  # distribute, sublicense, and/or sell copies of the Software, and to
  # permit persons to whom the Software is furnished to do so, subject to
  # the following conditions:
  #
  # The above copyright notice and this permission notice shall be
  # included in all copies or substantial portions of the Software.
  #
  # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.