Sha256: aa7d0774db7c3f8e9e977175af7079935e8259a47c375de516616601ff808268
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
require 'trollop' module SimplePerf module CLI class Stop include Shared def execute opts = Trollop::options do version SimplePerf::VERSION banner <<-EOS Stops the current test by killing JMeter or Gatling java processes. Usage: simple_perf stop -e ENVIRONMENT -n STACK_NAME EOS opt :help, "Display Help" opt :environment, "Set the target environment", :type => :string opt :name, "Stack name to manage", :type => :string end Trollop::die :environment, "is required but not specified" unless opts[:environment] Trollop::die :name, "is required but not specified" unless opts[:name] config = Config.new.environment opts[:environment] ENV['SIMPLE_DEPLOY_SSH_KEY'] = config['local_pem'] ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user'] command = 'simple_deploy execute' + ' -e ' + opts[:environment] + ' -n ' + opts[:name] + ' -c "killall java"' + ' -l debug' Shared::pretty_print `#{command}` end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_perf-0.0.5 | lib/simple_perf/cli/stop.rb |
simple_perf-0.0.4 | lib/simple_perf/cli/stop.rb |