Hi,
in my private istance i have 4 location sites,
three of these are peripheral and work with a single pc that running tests with three browsers (CH, IE, FF) …
the main site contains 5 pc identical to each other always with the three browsers.
I have configured location.ini
[locations]
1=aaa
2=bbb
3=ccc
4=ddd
default=ddd
;---
[aaa]
1=aaa1
label="site 1 (Backbone provider1)"
lat=
lng=
default=aaa1
[bbb]
1=bbbADSL
label="site 2 (adsl provider 2)"
lat=
lng=
default=bbbADSL
[ccc]
1=ccc1
label="site 3 (backbone provider 3)"
lat=
lng=
default=ccc1
[ddd]
1=ddd1
2=ddd2
3=ddd3
4=ddd4
5=ddd5
lat=
lng=
label="site 4 (backbone provider 4)"
default=ddd2
;---
[aaa1]
browser=CH, FF, IE
latency=0
label="10.b.c.d"
user-data: wpt_server=10.b.c.d
connectivity=LAN
..... etc etc
the question is about main site:
I launch tests with api command and my system run tests continuosly for subsequent graphical analysis (pcs probes are very busy)
[php]
$url_completa = $url_server.“runtest.php?f=xml&location=”.$this->exec_now[‘location_name’].“&fvonly=1&mv=1&ignoreSSL=1&video=1&script=”.urlencode($this->exec_now[‘test_script’]);
$ch = curl_init($url_completa);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$output = curl_exec($ch);
[/php]
now I use // location=“ddd1:IE.LAN”
I need to change in // location=“ddd:IE.LAN”
how webpagetest solves the problem of load balancing between (ddd1 … ddd5)
Thanks for your help
Rikiki61