Capistrano::Newrelic
Installation
Add this line to your application's Gemfile:
gem 'capistrano-newrelic'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-newrelic
Usage
# Capfile
require 'capistrano/newrelic'
License key and application name are retrieved from newrelic.yml.
Configurable options, shown here with defaults:
# 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
set :newrelic_changelog, ""
# Deployment description
set :newrelic_desc, ""
# Deploy user if set will be used instead of the VCS user.
set :newrelic_deploy_user
Changelog
0.0.8:
Hook was removed, please set it in your deploy.rb or deploy/'stage'.rb
namespace :deploy do before :finished, 'newrelic:notice_deployment' endRevision can be set with :
set :newrelic_revision, "Your text here"or
$ NEWRELIC_REVISION='Your text here' bundle exe cap ....
Contributors
Contributing
- 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