CouchBase instrumentation for NewRelic
Make sure you have installed the Couchbase Ruby Client and NewRelic RPM
Add this line to your application's Gemfile:
gem 'newrelic-couchbase'
And then execute:
$ bundle
Core methods of Couchbase will begin to traced by NewRelic. To disable Couchbase instrumentation either the DISABLE_NEW_RELIC_COUCHBASE flag can be set to true
ENV['DISABLE_NEW_RELIC_COUCHBASE'] = true
OR, the following statement can be appended to the newrelic.yml file
disable_couchbase: true
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request