simple_perf 0.0.8 → 0.0.9
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.
- data/lib/simple_perf/cli/chaos.rb +10 -3
- data/lib/simple_perf/version.rb +1 -1
- metadata +2 -2
@@ -41,9 +41,16 @@ EOS
|
|
41
41
|
|
42
42
|
ec2 = AWS::EC2.new(:region => config['region'])
|
43
43
|
ec2.instances.each do |i|
|
44
|
-
if
|
45
|
-
|
46
|
-
|
44
|
+
if i.vpc_id
|
45
|
+
if(i.private_ip_address == target)
|
46
|
+
puts "Terminating instance with private IP: " + target
|
47
|
+
i.terminate
|
48
|
+
end
|
49
|
+
elsif
|
50
|
+
if(i.ip_address == target)
|
51
|
+
puts "Terminating instance with public IP: " + target
|
52
|
+
i.terminate
|
53
|
+
end
|
47
54
|
end
|
48
55
|
end
|
49
56
|
end
|
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.9
|
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-10-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|