-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathexample_config.json
72 lines (70 loc) · 2.02 KB
/
example_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"wptApiKey": "get one from http://www.webpagetest.org/getkey.php",
"wptServer": "use this for a private wpt instance, otherwise delete it",
"testSuites":[
{
"suiteDisplayName": "GoogleVsBingVsDDG",
"suiteId": "google_bing_dgg",
"desc": "This suite runs on a Chrome in Dulles, VA",
"runEvery": 600,
"testHost": "http://google.com/",
"location": "ec2-us-west-2:Chrome",
"chartConfig" : [
{
"type" : "SpeedIndex",
"dataRange": [0, 8000],
"dateCutoff": 30
}
],
"testPages": [
{
"testDisplayName": "Google Homepage",
"testId": "google_homepage",
"path": "search?q=High+Performance+Browser+Networking"
},
{
"testDisplayName": "Bing Homepage",
"testId": "bing_homepage",
"path": "search?q=High+Performance+Browser+Networking",
"testHost": "http://bing.com/"
},
{
"testDisplayName": "Duck Duck Go Homepage",
"testId": "ddg_homepage",
"path": "?q=High+Performance+Browser+Networking",
"testHost": "http://duckduckgo.com/"
}
]
},
{
"suiteDisplayName": "TopRedditvsTopHN",
"suiteId": "reddit_hn_top",
"desc": "This suite runs on Chrome in Dulles, VA",
"runEvery": 1200,
"testHost": "http://reddit.com/",
"location": "ec2-us-west-2:Chrome",
"chartConfig" : [
{
"type" : "SpeedIndex",
"dataRange": [0, 8000],
"dateCutoff": 30
}
],
"testPages": [
{
"testDisplayName": "Reddit Top Story",
"testId": "reddit_top",
"parentPath": "",
"parentHrefSelector": ".sitetable .comments"
},
{
"testDisplayName": "Hacker News Top Story",
"testId": "hn_top",
"testHost": "http://news.ycombinator.com/",
"parentPath": "",
"parentHrefSelector": ".subtext a:last-of-type"
}
]
}
]
}