I’ve got a private instance running and have set up a EC2 test agent using ami-561cb13e. It’s a windows 64 bit test agent. Everything is working but it’s taking 10 mins to load and then it’s saying that the test completed but there were no successful results.
So I added connectivity=LAN to the location like the documentation says and it doesn’t help. Then I saw that on the Performance Calendar site Patrick said that it could take 10 mins if the EC2 instance isn’t staying up so I added to the settings.ini:
; Use if the server will be auto-starting/stopping EC2 test agents
;ec2_key=
;ec2_secret=
; Should we automatically delete any EBS volumes marked as “available”?
; This can be used to prevent orphaned volumes but only if the account
; doesn’t expect to keep offline EBS volumes.
;ec2_prune_volumes=1
; Start an EC2 instance for every X tests in the queue (up to the location max)
EC2.ScaleFactor=100
; Default location when using EC2 auto-scaling
EC2.default=us-east-1
; Per-location minimum and maximum EC2 instance counts.
; By default the minimum will be 0 and the maximum will be 1.
; This needs to be specified for every location where you want
; different settings (EC2..min/max).
EC2.us-east-1.min=0
EC2.us-east-1.max=1
ec2_locations=0
Here’s the location file:
[locations]
1=us-east-1-group
[us-east-1-group]
1=us-east-1_wptdriver
label=“US East (N. Virginia)”
lat=38.954980
lng=-77.447956
default=us-east-1_wptdriver
[us-east-1_wptdriver]
browser=Chrome,Firefox,Safari,IE 11
label=“US East (N. Virginia)”
ami=ami-561cb13e
connectivity=LAN
I even tried a windows 32 bit system ami-c262d9ab and added this to the location file:
[locations]
1=us-east-1-group
2=virginia-group
[virginia-group]
1=virginia_wptdriver
label=“Virginia”
lat=38.954980
lng=-77.447956
default=virginia_wptdriver
[virginia_wptdriver]
browser=Chrome,Firefox,Safari
label=“Virginia”
ami=ami-c262d9ab
Here’s what the test logs are saying:
2015/02/28 05:48:57 - Test Created
2015/02/28 05:48:58 - Starting test (initiated by tester i-8623567c)
2015/02/28 05:59:58 - Test has been running for 11 minutes and it has been 100 since the last update, forcing the full test to finish.
Am I missing anything or is there any other advice anyone can give me on setting this up? Thanks for taking the time to look through it all!