You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: beeswithmachineguns/main.py
+27-21Lines changed: 27 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -34,59 +34,65 @@ def parse_options():
34
34
"""
35
35
command=sys,
36
36
parser=OptionParser(usage="""
37
-
bwmg COMMAND L [options]
37
+
bees COMMAND L [options]
38
38
39
39
Bees with Machine Guns
40
40
41
41
A utility for arming (creating) many bees (small EC2 instances) to attack
42
42
(load test) targets (web applications).
43
43
44
44
commands:
45
-
up start a batch of load testing servers
46
-
attack begin the attack on a specific url
47
-
down shutdown and deactivate the load testing servers
45
+
up Start a batch of load testing servers.
46
+
attack Begin the attack on a specific url.
47
+
down Shutdown and deactivate the load testing servers.
48
48
""")
49
49
50
-
up_group=OptionGroup(parser, "up options", "Options for the up command")
50
+
up_group=OptionGroup(parser, "up",
51
+
"""In order to spin up new servers you will need to specify at least the -k command, which is the name of the EC2 keypair to use for creating and connecting to the new servers. The bees will expect to find a .pem file with this name in ~/.ssh/.""")
0 commit comments