Easily instrument your Rails apps with Honeycomb.
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.
See docs for available config options.
See rubydoc for gem documentation.
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.
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