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
Using the `docker-compose scale` command does not work as it creates hostnames like `minion_1`. This causes an error in JMeter as it uses the hostname in URL form and sees the underscore as an illegal URL character.
125
123
124
+
## Notes
125
+
The following required and optional environment variables are supported:
126
+
127
+
| Variable | Required | Default | Notes |
128
+
|---|---|---|---|
129
+
|AWS_DEFAULT_REGION|Yes|None|AWS Region (e.g. us-east-1)|
130
+
|AWS_ACCESS_KEY_ID|Yes|None|AWS Access Key|
131
+
|AWS_SECRET_ACCESS_KEY|Yes|None|AWS Secret Key|
132
+
|INPUT_JMX|Yes|None|File path of JMeter Test file to run (.jmx). You can optionally specify this as the first command line option of `docker run`|
133
+
|KEY_NAME|Yes|None|AWS Security Key Pair .pem file (do not specify the .pem extension)|
134
+
|SECURITY_GROUP|Yes|None|AWS Secuirty group that allows ports 22,1099,50000,51000/tcp and 4445/udp from all ports (e.g. sg-12345678)|
135
+
|SUBNET_ID|Yes|None|One or more Subnets that are assigned to your VPC|
136
+
|VPC_ID||VPC assigned to SUBNET_ID|We dautomatically erive this from your SUBNET_ID|
137
+
|JMETER_VERSION||latest|smithmicro/lucy Image tag. See Docker Hub for [available versions](https://hub.docker.com/r/smithmicro/jmeter/tags/).|
138
+
|INSTANCE_TYPE||t2.micro|To double your memory, pass t2.small|
139
+
|MEM_LIMIT||950m|If you are using t2.small, set MEM_LIMIT to 1995m|
140
+
|MINION_COUNT||2||
141
+
|PEM_PATH||/keys|This must match your Volume map. See Volume section above.|
142
+
|MINION_CLUSTER_NAME||JMeterMinion|Name that appears in your AWS Cluster UI|
143
+
|GRU_CLUSTER_NAME||JMeterGru|Name that appears in your AWS Cluster UI|
144
+
|GRU_PRIVATE_IP||(blank)|Set to true if you would like to run Lucy within AWS. See GitHub [Issue 8](https://github.com/smithmicro/jmeter-ecs/issues/8) for details.|
145
+
126
146
## Notes
127
147
This Docker image uses the Instance Metadata API documented here:
0 commit comments