I installed the New Relic add-on to a Ruby on Rails 3.2.5 app running on Heroku, so I’ll share the procedure.
When using it with Cedar stack, simply adding the add-on wasn’t enough to make it work.
Here’s the New Relic installation procedure.
$ heroku addons:add newrelic:standard
group :production do
gem 'newrelic_rpm'
end
$ bundle install --without production
$ curl https://raw.github.com/gist/2253296/newrelic.yml > config/newrelic.yml
$ git commit -m "Added New Relic Plugin"
$ git push heroku master
That’s all about installing the New Relic add-on to a Heroku + Ruby on Rails 3.2.5 app from the Gemba.
That’s all from the Gemba.