Add this line to your application's Gemfile:
gem 'capistrano-newrelic'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-newrelic
require 'capistrano/newrelic'
In your Capfile, or stage configuration files for multi-stage configuration add:
before 'deploy:finished', 'newrelic:notice_deployment'
License key and application name are retrieved from config/newrelic.yml
based
on the environment setting (defaults to value of rails_env
,
rack_env
and can be overridden by setting newrelic_env
).
Configurable options, shown here with defaults:
# New Relic Application Name to deploy to. Default to :application if no value set
set :newrelic_appname, ""
# New Relic environment to deploy to. Sets config based on section of newrelic.yml
set :newrelic_env, fetch(:stage, fetch(:rack_env, fetch(:rails_env, 'production')))
# Deployment changelog defaults to the git changelog, if using git
set :newrelic_changelog, "<git changelog if available>"
# Deployment description
set :newrelic_desc, ""
# Deploy user if set will be used instead of the VCS user.
set :newrelic_deploy_user
0.0.10:
- Use git --no-pager option when printing the log
0.0.9:
- Added changelog capture for git
- Populate revision with
current_revision
from scm if available; i.e., the git SHA
0.0.8:
- Hook was removed, please set it in your deploy.rb or deploy/'stage'.rb
before 'deploy:finished', 'newrelic:notice_deployment'
- Revision can be set with :
set :newrelic_revision, "Your text here"
or
$ NEWRELIC_REVISION='Your text here' bundle exe cap ....
- 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