9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# File 'lib/simple_perf/cli/gatling_results.rb', line 9
def execute
opts = Trollop::options do
version SimplePerf::VERSION
banner <<-EOS
Moves simulations logs from EC2 simple_perf instances to s3 bucket for respective project.
Usage:
simple_perf gatling_results -e ENVIRONMENT -p PROJECT_NAME
EOS
opt :help, "Display Help"
opt :environment, "Set the target environment", :type => :string
opt :project, "Stack name to manage", :type => :string
end
Trollop::die :environment, "is required but not specified" unless opts[:environment]
Trollop::die :project, "is required but not specified" unless opts[:project]
config = Config.new.environment opts[:environment]
ENV['SIMPLE_DEPLOY_SSH_KEY'] = config['local_pem']
ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user']
AWS.config(
:access_key_id => config['access_key'],
:secret_access_key => config['secret_key'])
command = 'simple_deploy list' +
' -e ' + opts[:environment] +
' | grep ' + opts[:project] + '-s3'
bucket_stack = `#{command}`
command = 'simple_deploy outputs' +
' -e ' + opts[:environment] +
' -n ' + bucket_stack
bucket_name = `#{command}`
bucket_name = bucket_name.split(' ')[1]
command = 'simple_deploy execute' +
' -e ' + opts[:environment] +
' -n ' + 'simple-perf-' + opts[:project] +
' -c "~/sync_to_s3.sh "' + bucket_name +
' -l debug -x'
Shared::pretty_print `#{command}`
end
|