Sha256: 8b8bd716607976e5f57f8dde195bb11bfe553ee92eaf3a69b117f6546baa1db9
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
require 'trollop' module SimplePerf module CLI class Status include Shared def execute opts = Trollop::options do version SimplePerf::VERSION banner <<-EOS Display JMeter army process status Usage: simple_perf status -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['key'] ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user'] command = 'simple_deploy execute' + ' -e ' + opts[:environment] + ' -n ' + opts[:name] + ' -c "ps -ef | grep java | grep -v grep || echo \"jmeter process not found\""' + ' -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.2 | lib/simple_perf/cli/status.rb |
simple_perf-0.0.1 | lib/simple_perf/cli/status.rb |