simple_perf 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,14 +13,16 @@ module SimplePerf
|
|
13
13
|
Starts Gatling java processes.
|
14
14
|
|
15
15
|
Usage:
|
16
|
-
simple_perf start_gatling -e ENVIRONMENT -n STACK_NAME
|
16
|
+
simple_perf start_gatling -e ENVIRONMENT -n STACK_NAME -s SIMULATION_NAME
|
17
17
|
EOS
|
18
18
|
opt :help, "Display Help"
|
19
19
|
opt :environment, "Set the target environment", :type => :string
|
20
20
|
opt :name, "Stack name to manage", :type => :string
|
21
|
+
opt :simulation, "Gatling User simulation file (e.g. sample.SampleUserModelSimulation)", :type => :string
|
21
22
|
end
|
22
23
|
Trollop::die :environment, "is required but not specified" unless opts[:environment]
|
23
24
|
Trollop::die :name, "is required but not specified" unless opts[:name]
|
25
|
+
Trollop::die :simulation, "is required but not specified" unless opts[:simulation]
|
24
26
|
|
25
27
|
config = Config.new.environment opts[:environment]
|
26
28
|
|
@@ -30,7 +32,7 @@ EOS
|
|
30
32
|
command = 'simple_deploy execute' +
|
31
33
|
' -e ' + opts[:environment] +
|
32
34
|
' -n ' + opts[:name] +
|
33
|
-
' -c "cd ~/gatling_test_files; nohup ./gatling.sh < input > gatling.log
|
35
|
+
' -c "cd ~/gatling_test_files; nohup ./gatling.sh ' + opts[:simulation] + ' < input > gatling.log &"' +
|
34
36
|
' -l debug'
|
35
37
|
|
36
38
|
Shared::pretty_print `#{command}`
|
@@ -10,7 +10,7 @@ module SimplePerf
|
|
10
10
|
version SimplePerf::VERSION
|
11
11
|
banner <<-EOS
|
12
12
|
|
13
|
-
Display JMeter army process status
|
13
|
+
Display JMeter or Gatling army process status
|
14
14
|
|
15
15
|
Usage:
|
16
16
|
simple_perf status -e ENVIRONMENT -n STACK_NAME
|
@@ -30,7 +30,7 @@ EOS
|
|
30
30
|
command = 'simple_deploy execute' +
|
31
31
|
' -e ' + opts[:environment] +
|
32
32
|
' -n ' + opts[:name] +
|
33
|
-
' -c "ps -ef | grep java | grep -v grep || echo \"
|
33
|
+
' -c "ps -ef | grep java | grep -v grep || echo \"java process not found\""' +
|
34
34
|
' -l debug'
|
35
35
|
|
36
36
|
Shared::pretty_print `#{command}`
|
data/lib/simple_perf/cli/stop.rb
CHANGED
@@ -10,7 +10,7 @@ module SimplePerf
|
|
10
10
|
version SimplePerf::VERSION
|
11
11
|
banner <<-EOS
|
12
12
|
|
13
|
-
Stops the current test by killing JMeter java processes.
|
13
|
+
Stops the current test by killing JMeter or Gatling java processes.
|
14
14
|
|
15
15
|
Usage:
|
16
16
|
simple_perf stop -e ENVIRONMENT -n STACK_NAME
|
@@ -208,7 +208,7 @@
|
|
208
208
|
"/home/ec2-user/gatling_test_files/gatling.sh": {
|
209
209
|
"content": { "Fn::Join": [ "", [ "#!/bin/bash", "\n",
|
210
210
|
"export GATLING_HOME=/opt/gatling", "\n",
|
211
|
-
"$GATLING_HOME/bin/gatling.sh -df ~/gatling_test_files/user-files/data -sf ~/gatling_test_files/user-files/simulations", "\n" ] ] },
|
211
|
+
"$GATLING_HOME/bin/gatling.sh -df ~/gatling_test_files/user-files/data -sf ~/gatling_test_files/user-files/simulations -s $1", "\n" ] ] },
|
212
212
|
"owner": "ec2-user",
|
213
213
|
"group": "ec2-user",
|
214
214
|
"mode": "000770"
|
data/lib/simple_perf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_perf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-09-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|