No commit activity in last 3 years
No release in over 3 years
New Relic integration for Capistrano 3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Gem Version

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

In Capfile

require 'capistrano/newrelic'

In stage files

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).

In deploy.rb

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

Changelog

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 ....

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request