honeycomb-rails Build Status Gem Version

Easily instrument your Rails apps with Honeycomb.

Getting started

Add the following to your Gemfile:

gem 'honeycomb-rails'

Then create a file in your application repo called config/initializers/honeycomb.rb with the following contents:

HoneycombRails.configure do |conf|
  conf.writekey = 'your honeycomb writekey here'
  conf.dataset = 'your app name'
  conf.db_dataset = 'your app name-activerecord'
end

Now check out our guide to see what kind of visibility you can get from your app.

Configuration

See docs for available config options.

Documentation

See rubydoc for gem documentation.

Contributions

Features, bug fixes and other changes are gladly accepted. Please open issues or a pull request with your change. Remember to add your name to the CONTRIBUTORS file!

All contributions will be released under the Apache License 2.0.

Releasing a new version

Travis will automatically upload tagged releases to Rubygems. To release a new version, run

rake bump:patch[tag]   # Or rake bump:minor[tag], etc.
git push --follow-tags