Sha256: a127ca8d4d581138a9198ce9b42bbaabdb480196827b2d534aa52d4461129385

Contents?: true

Size: 1.71 KB

Versions: 6

Compression:

Stored size: 1.71 KB

Contents

require "etc"
require "instrumental_agent"

Capistrano::Configuration.instance.load do
  _cset(:instrumental_hooks) { true }
  _cset(:instrumental_key) { nil }
  _cset(:deployer) { Etc.getlogin.chomp }

  if fetch(:instrumental_hooks)
    before "deploy", "instrumental:util:deploy_start"
    after  "deploy", "instrumental:util:deploy_end"
    before "deploy:migrations", "instrumental:util:deploy_start"
    after  "deploy:migrations", "instrumental:util:deploy_end"
    after  "instrumental:util:deploy_end", "instrumental:record_deploy_notice"
  end

  namespace :instrumental do
    namespace :util do
      desc "marker for beginning of deploy"
      task :deploy_start do
        set :instrumental_deploy_start, Time.now
      end

      desc "marker for end of deploy"
      task :deploy_end do
        set :instrumental_deploy_end, Time.now
      end
    end

    desc "send a notice to instrumental about the deploy"
    task :record_deploy_notice do
      start_at                   = fetch(:instrumental_deploy_start, Time.now)
      end_at                     = fetch(:instrumental_deploy_end, start_at)
      deploy_duration_in_seconds = end_at - start_at
      deployer                   = fetch(:deployer)
      agent_options              = { :synchronous => true }
      agent_options[:collector]  = instrumental_host if fetch(:instrumental_host, false)
      agent                      = Instrumental::Agent.new(fetch(:instrumental_key), agent_options)
      message                    = fetch(:deploy_message, "#{deployer} deployed #{current_revision}")

      agent.notice(message,
                   start_at,
                   deploy_duration_in_seconds)
      logger.info("Notified Instrumental of deployment")
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
instrumental_agent-3.0.0 lib/instrumental/capistrano/capistrano2.rb
instrumental_agent-3.0.0.beta3 lib/instrumental/capistrano/capistrano2.rb
instrumental_agent-3.0.0.beta2 lib/instrumental/capistrano/capistrano2.rb
instrumental_agent-3.0.0.beta lib/instrumental/capistrano/capistrano2.rb
instrumental_agent-3.0.0.alpha lib/instrumental/capistrano/capistrano2.rb
instrumental_agent-2.1.0 lib/instrumental/capistrano/capistrano2.rb