forked from olegfedoseev/go-webpagetest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.go
1114 lines (1038 loc) · 56.5 KB
/
result.go
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package webpagetest
import (
"encoding/json"
"fmt"
"net/url"
"sort"
"strconv"
)
// https://sites.google.com/a/webpagetest.org/docs/advanced-features/raw-test-results
// Pages is struct for links to various pages about test run
type Pages struct {
Details string `json:"details"`
Checklist string `json:"checklist"`
Breakdown string `json:"breakdown"`
Domains string `json:"domains"`
ScreenShot string `json:"screenShot"`
}
// Thumbnails is struct for links to thumbnails of various images for test tun
type Thumbnails struct {
Waterfall string `json:"waterfall"`
Checklist string `json:"checklist"`
ScreenShot string `json:"screenShot"`
}
/*
// Images is struct for links to originals of various images for test tun
type Images struct {
Waterfall string `json:"waterfall"`
ConnectionView string `json:"connectionView"`
Checklist string `json:"checklist"`
ScreenShot string `json:"screenShot"`
ScreenShotPng string `json:"screenShotPng"`
}
// RawData is struct for links to raw data about test tun
type RawData struct {
Headers string `json:"headers"`
PageData string `json:"pageData"`
RequestsData string `json:"requestsData"`
Utilization string `json:"utilization"`
}
// VideoFrame is struct for one video frame
type VideoFrame struct {
Time int `json:"time"`
Image string `json:"image"`
VisuallyComplete int `json:"VisuallyComplete"`
}
// Domain is struct for stats about requests form particular domain
type Domain struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CDNProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
}
// Breakdown is struct for data for pie charts of resource distribution
type Breakdown struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
Requests int `json:"requests"`
}
*/
// Headers is struct for http headers of request and response
type Headers struct {
Request []string `json:"request"`
Response []string `json:"response"`
}
type jsonRequest struct {
IP string `json:"ip_addr"` // "173.194.122.199"
Method string `json:"method"` // "GET"
Host string `json:"host"` // "google.com"
URL string `json:"url"` // "/"
FullURL string `json:"full_url"` // "http://google.com/"
ResponseCode string `json:"responseCode"` // "302",
Protocol string `json:"protocol"` // "HTTP/2"
RequestID int `json:"request_id,string"` // "9"
Index int `json:"index"` // 0
Number int `json:"number"` // 1
Type int `json:"type,string"` // "3"
Socket int `json:"socket,string"` // "22"
Priority string `json:"priority"` // "VeryHigh",
// Network
BytesOut int `json:"bytesOut,string"` // "397"
BytesIn int `json:"bytesIn,string"` // "467"
ServerCount int `json:"server_count,string"` // "11"
ServerRTT int `json:"server_rtt,string"` // "26"
ClientPort int `json:"client_port,string"` // "55276"
IsSecure int `json:"is_secure,string"` // "0"
CertificateBytes int `json:"certificate_bytes,string"` // "0", "3769",
// Cache
Expires string `json:"expires"` // "Tue, 14 Nov 2017 22:46:51 GMT", "-1"
CacheControl string `json:"cacheControl"` // "private"
CacheTime int `json:"cache_time,string"` // "0"
ContentType string `json:"contentType"` // "text/html"
ContentEncoding string `json:"contentEncoding"` // "gzip"
ObjectSize int `json:"objectSize,string"` // "256"
CDNProvider string `json:"cdn_provider"` // "Google",
// Timings
DNSStart json.Number `json:"dns_start"` // "0"
DNSEnd json.Number `json:"dns_end"` // "50"
DNS json.Number `json:"dns_ms"` // "-1",
ConnectStart json.Number `json:"connect_start"` // "50"
ConnectEnd json.Number `json:"connect_end"` // "76"
Connect json.Number `json:"connect_ms"` // 26,
SSLStart json.Number `json:"ssl_start"` // "0"
SSLEnd json.Number `json:"ssl_end"` // "0"
SSL json.Number `json:"ssl_ms"` // "-1",
LoadStart json.Number `json:"load_start,string"` // "76"
LoadEnd json.Number `json:"load_end"` // 119
Load json.Number `json:"load_ms,string"` // "43",
TTFBStart json.Number `json:"ttfb_start"` // "76"
TTFBEnd json.Number `json:"ttfb_end"` // 119
TTFB json.Number `json:"ttfb_ms,string"` // "43",
DownloadStart json.Number `json:"download_start"` // 119
DownloadEnd json.Number `json:"download_end"` // 119
Download json.Number `json:"download_ms"` // 0,
AllStart json.Number `json:"all_start"` // "50"
AllEnd json.Number `json:"all_end"` // 119
All json.Number `json:"all_ms"` // 69,
// Optimizations
ScoreCache json.Number `json:"score_cache"` // "0"
ScoreCDN json.Number `json:"score_cdn"` // "-1"
ScoreGZip json.Number `json:"score_gzip"` // "-1"
ScoreCookies json.Number `json:"score_cookies"` // "-1"
ScoreKeepAlive json.Number `json:"score_keep-alive"` // "-1"
ScoreMinify json.Number `json:"score_minify"` // "-1"
ScoreCombine json.Number `json:"score_combine"` // "-1"
ScoreCompress json.Number `json:"score_compress"` // "-1"
ScoreETags json.Number `json:"score_etags"` // "-1"
ScoreProgressiveJpeg json.Number `json:"score_progressive_jpeg"` // -1
GZipTotal json.Number `json:"gzip_total"` // "0"
GZipSave json.Number `json:"gzip_save"` // "0"
MinifyTotal json.Number `json:"minify_total"` // "0"
MinifySave json.Number `json:"minify_save"` // "0"
ImageTotal json.Number `json:"image_total"` // "0"
ImageSave json.Number `json:"image_save"` // "0"
JpegScanCount json.Number `json:"jpeg_scan_count"` // "0",
// HTTP/2
HTTP2StreamDependency int `json:"http2_stream_dependency,string"` // "5"
HTTP2StreamExclusive int `json:"http2_stream_exclusive,string"` // "1"
HTTP2StreamID int `json:"http2_stream_id,string"` // "1"
HTTP2StreamWeight int `json:"http2_stream_weight,string"` // "256"
WasPushed int `json:"was_pushed,string"` // "0",
// Initiator info
Initiator string `json:"initiator"` // "https://www.google.cz/?gfe_rd=cr&ei=JDc5WJ2sDqSE8QfT-5SgBw&gws_rd=ssl"
InitiatorColumn int `json:"initiator_column,string"` // "104"
InitiatorDetail string `json:"initiator_detail"` // "{\"lineNumber\":50,\"type\":\"parser\",\"url\":\"https://www.google.cz/?gfe_rd=cr&ei=JDc5WJ2sDqSE8QfT-5SgBw&gws_rd=ssl\"}"
InitiatorFunction string `json:"initiator_function"` // "Xm"
InitiatorLine int `json:"initiator_line,string"` // "50"
InitiatorType string `json:"initiator_type"` // "other",
Headers Headers `json:"headers"`
}
// TestView struct tries to combine to kinds of testViews than WebPagetest returns
// With Steps in case of scripted run and without steps, when we test single url
// Because Go is strictly typed, we have to "merge" them in one data type
type TestView struct {
Run float64 `json:"run"`
Tester string `json:"tester"`
NumberOfSteps int `json:"numSteps"`
Steps []TestStep `json:"steps"`
}
// UnmarshalJSON implements custom unmarshaling logic than mitigates "dynamic"
// nature of test result's json
func (tv *TestView) UnmarshalJSON(b []byte) error {
var tmp struct {
Run float64 `json:"run"`
Tester string `json:"tester"`
NumberOfSteps int `json:"numSteps"`
}
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
tv.Run = tmp.Run
tv.Tester = tmp.Tester
tv.NumberOfSteps = tmp.NumberOfSteps
// If we have "steps" array, than Unmarshal as is
if tmp.NumberOfSteps > 1 {
var steps struct {
Steps []TestStep `json:"steps"`
}
if err := json.Unmarshal(b, &steps); err != nil {
return err
}
tv.Steps = steps.Steps
return nil
}
// If we have only one "step", then we emulate steps array
var step TestStep
if err := json.Unmarshal(b, &step); err != nil {
return err
}
tv.NumberOfSteps = 1
tv.Steps = []TestStep{step}
return nil
}
// TestStep is struct with information of one particular test "run"
/*
type TestStep struct {
URL string `json:"URL"`
Run int `json:"run"`
Date float64 `json:"date"` // 1479973600
Error string `json:"error"` // Timed out waiting for the browser to start.
Result int `json:"result"` // 99999
Tester string `json:"tester"`
BrowserName string `json:"browser_name"` // "Google Chrome"
BrowserVersion string `json:"browser_version"` // "54.0.2840.99",
NumSteps int `json:"numSteps"`
Step int `json:"step"`
EventName string `json:"eventName"` // "Step 1"
PageTitle string `json:"title"`
// Estimated RTT to Server (ms)
ServerRTT int `json:"server_rtt"`
// Time to First Byte (ms)
// The First Byte time (often abbreviated as TTFB) is measured as the time from the start of
// the initial navigation until the first byte of the base page is received by the browser (after following redirects).
TTFB int `json:"TTFB"`
// Time to DOM Loading - From Navigation Timing
DOMLoading int `json:"domLoading"`
// Browser-reported first paint time (IE-specific right now - window.performance.timing.msFirstPaint)
FirstPaint float64 `json:"firstPaint"`
FirstMeaningfulPaint int `json:"chromeUserTiming.firstMeaningfulPaint"`
// Time from the start of the operation until the title first changed (in ms)
TitleTime int `json:"titleTime"`
// Time to DOM Interactive - From Navigation Timing
DOMInteractive int `json:"domInteractive"`
// DOM Content Loaded - From Navigation Timing
DOMContentLoadedEventStart int `json:"domContentLoadedEventStart"`
DOMContentLoadedEventEnd int `json:"domContentLoadedEventEnd"` // 455,
// Browser-reported Load Time (Navigation Timing onload)
LoadEventStart int `json:"loadEventStart"`
LoadEventEnd int `json:"loadEventEnd"`
// Load Time (onload, ms)
// The Load Time is measured as the time from the start of the initial navigation until the beginning of the window load event (onload).
LoadTime int `json:"loadTime"`
DocTime int `json:"docTime"`
DOMTime int `json:"domTime"`
// Time to Start Render (ms)
// The Start Render time is measured as the time from the start of the initial
// navigation until the first non-white content is painted to the browser display.
StartRender int `json:"render"`
// Time to Visually Complete (ms)
VisualComplete int `json:"visualComplete"`
// Fully Loaded (ms)
// The Fully Loaded time is measured as the time from the start of the initial navigation until
// there was 2 seconds of no network activity after Document Complete. This will usually
// include any activity that is triggered by javascript after the main page loads.
FullyLoaded int `json:"fullyLoaded"`
// Time of the last visual change to the page (in ms, only available when video capture is enabled)
LastVisualChange int `json:"lastVisualChange"`
// Time until the above-the-fold stabilized (if explicitly requested)
AboveTheFoldTime int `json:"aft"`
SpeedIndex int `json:"SpeedIndex"`
// Number of DOM Elements
// The DOM Elements metric is the count of the DOM elements on the tested page as measured at the end of the test.
DOMElements int `json:"domElements"`
// CPU Busy Time (ms)
DocCPUms float32 `json:"docCPUms"` // 951.606
FullyLoadedCPUms float32 `json:"fullyLoadedCPUms"` // 1294.808,
CPUTimes map[string]int `json:"cpuTimes"`
CPUTimesDoc map[string]int `json:"cpuTimesDoc"`
DocCPUpct int `json:"docCPUpct"` // 39
FullyLoadedCPUpct float64 `json:"fullyLoadedCPUpct"` // 19,
// The number of bytes downloaded before the Document Complete time
BytesIn int `json:"bytesIn"`
BytesOut int `json:"bytesOut"`
BytesInDoc int `json:"bytesInDoc"`
BytesOutDoc int `json:"bytesOutDoc"`
EffectiveBps int `json:"effectiveBps"` // 433693
EffectiveBpsDoc int `json:"effectiveBpsDoc"` // 466135
// Total bytes in server-supplied TLS certificates
CertificateBytes int `json:"certificate_bytes"` // 17499,
Connections int `json:"connections"`
// Requests []jsonRequest `json:"requests"`
RequestsFull int `json:"requestsFull"`
// The number of http(s) requests before the Document Complete time
RequestsDoc int `json:"requestsDoc"`
Responses200 int `json:"responses_200"`
Responses404 int `json:"responses_404"`
ResponsesOther int `json:"responses_other"`
OptimizationChecked int `json:"optimization_checked"` // 1
ScoreCache int `json:"score_cache"` // 0
ScoreCDN int `json:"score_cdn"` // -1
ScoreGZip int `json:"score_gzip"` // -1
ScoreCookies int `json:"score_cookies"` // -1
ScoreKeepAlive int `json:"score_keep-alive"` // -1
ScoreMinify int `json:"score_minify"` // -1
ScoreCombine int `json:"score_combine"` // 100
ScoreCompress int `json:"score_compress"` // -1
ScoreETags int `json:"score_etags"` // -1
ScoreProgressiveJpeg int `json:"score_progressive_jpeg"` // -1,
GZipTotal int `json:"gzip_total"` // 0
GZipSavings int `json:"gzip_savings"` // 0,
MinifyTotal int `json:"minify_total"` // 0
MinifySavings int `json:"minify_savings"` // 0,
ImageTotal int `json:"image_total"` // 0
ImageSavings int `json:"image_savings"` // 0,
PageSpeedVersion string `json:"pageSpeedVersion"` // "1.9",
ServerCount int `json:"server_count"` // 16,
Cached int `json:"cached"` // 0,
AdultSite int `json:"adult_site"` // 0,
FixedViewport int `json:"fixed_viewport"` // 0
BasePageCDN string `json:"base_page_cdn"` // "Google"
BasePageRedirects int `json:"base_page_redirects"` // 2
BasePageTTFB int `json:"base_page_ttfb"` // 524,
BrowserProcessCount int `json:"browser_process_count"` // 8
BrowserMainMemoryKB int `json:"browser_main_memory_kb"` // 69752
BrowserWorkingSetKB int `json:"browser_working_set_kb"` // 136568
BrowserOtherPrivateMemoryKB int `json:"browser_other_private_memory_kb"` // 66816,
TimeToInteractive int `json:"TTIMeasurementEnd"` // 11846
LastInteractive int `json:"LastInteractive"` // 9571
Pages Pages `json:"pages"`
Thumbnails Thumbnails `json:"thumbnails"`
Images Images `json:"images"`
RawData RawData `json:"rawData"`
VideoFrames []VideoFrame `json:"videoFrames"`
Breakdown map[string]Breakdown `json:"breakdown"`
jsonDomains json.RawMessage `json:"domains"`
Domains map[string]Domain `json:"-"` // may be empty array
TestTiming map[string]int `json:"testTiming"`
}
*/
type TestStep struct {
NumSteps int `json:"numSteps"`
Run int `json:"run"`
Tester string `json:"tester"`
MinifyTotal int `json:"minify_total"`
Responses200 int `json:"responses_200"`
TestStartOffset int `json:"testStartOffset"`
BytesOut int `json:"bytesOut"`
GzipSavings int `json:"gzip_savings"`
RequestsFull int `json:"requestsFull"`
StartEpoch int `json:"start_epoch"`
Connections int `json:"connections"`
BasePageCdn string `json:"base_page_cdn"`
BytesOutDoc int `json:"bytesOutDoc"`
Result int `json:"result"`
FinalBasePageRequestID string `json:"final_base_page_request_id"`
ScoreCookies int `json:"score_cookies"`
BasePageSSLTime int `json:"basePageSSLTime"`
DocTime int `json:"docTime"`
DomContentLoadedEventEnd int `json:"domContentLoadedEventEnd"`
ImageSavings int `json:"image_savings"`
RequestsDoc int `json:"requestsDoc"`
FirstMeaningfulPaint int `json:"firstMeaningfulPaint"`
FirstTextPaint int `json:"firstTextPaint"`
FirstPaint float64 `json:"firstPaint"`
ScoreCdn int `json:"score_cdn"`
OptimizationChecked int `json:"optimization_checked"`
ImageTotal int `json:"image_total"`
ScoreMinify int `json:"score_minify"`
GzipTotal int `json:"gzip_total"`
Responses404 int `json:"responses_404"`
LoadTime int `json:"loadTime"`
URL string `json:"URL"`
ScoreCombine int `json:"score_combine"`
FirstContentfulPaint int `json:"firstContentfulPaint"`
FirstLayout int `json:"firstLayout"`
ScoreEtags int `json:"score_etags"`
LoadEventStart int `json:"loadEventStart"`
MinifySavings int `json:"minify_savings"`
ScoreProgressiveJpeg int `json:"score_progressive_jpeg"`
DomInteractive int `json:"domInteractive"`
ScoreGzip int `json:"score_gzip"`
ScoreCompress int `json:"score_compress"`
DomContentLoadedEventStart int `json:"domContentLoadedEventStart"`
FinalURL string `json:"final_url"`
BytesInDoc int `json:"bytesInDoc"`
FirstImagePaint int `json:"firstImagePaint"`
ScoreKeepAlive int `json:"score_keep-alive"`
LoadEventEnd int `json:"loadEventEnd"`
Cached int `json:"cached"`
ScoreCache int `json:"score_cache"`
ResponsesOther int `json:"responses_other"`
MainFrame string `json:"main_frame"`
FullyLoaded int `json:"fullyLoaded"`
Requests int `json:"requests"`
FinalBasePageRequest int `json:"final_base_page_request"`
TTFB int `json:"TTFB"`
BytesIn int `json:"bytesIn"`
TestRunTimeMs int `json:"test_run_time_ms"`
BrowserVersion string `json:"browser_version"`
BasePageDNSServer string `json:"base_page_dns_server"`
FullyLoadedCPUms int `json:"fullyLoadedCPUms"`
PerformancePaintTimingFirstContentfulPaint float64 `json:"PerformancePaintTiming.first-contentful-paint"`
BasePageIPPtr string `json:"base_page_ip_ptr"`
EventName string `json:"eventName"`
Detected struct {
Widgets string `json:"Widgets"`
Analytics string `json:"Analytics"`
JavaScriptFrameworks string `json:"JavaScript Frameworks"`
Miscellaneous string `json:"Miscellaneous"`
WebServers string `json:"Web Servers"`
} `json:"detected"`
BasePageCname string `json:"base_page_cname"`
DocumentURL string `json:"document_URL"`
Date float64 `json:"date"`
PerformancePaintTimingFirstPaint float64 `json:"PerformancePaintTiming.first-paint"`
DomElements int `json:"domElements"`
DocumentOrigin string `json:"document_origin"`
BrowserName string `json:"browser_name"`
DetectedApps struct {
JQuery string `json:"jQuery"`
MouseFlow string `json:"Mouse Flow"`
SiteCatalyst string `json:"SiteCatalyst"`
UnderscoreJs string `json:"Underscore.js"`
GoogleAnalytics string `json:"Google Analytics"`
React string `json:"React"`
Nginx string `json:"Nginx"`
Webpack string `json:"webpack"`
Facebook string `json:"Facebook"`
RequireJS string `json:"RequireJS"`
LoDash string `json:"Lo-dash"`
} `json:"detected_apps"`
FullyLoadedCPUpct float64 `json:"fullyLoadedCPUpct"`
DomComplete int `json:"domComplete"`
DocumentHostname string `json:"document_hostname"`
UserTimeMarkAdobeTargetHideBody int `json:"userTime.mark_adobe_target_hide_body"`
UserTimes struct {
MarkAdobeTargetHideBody int `json:"mark_adobe_target_hide_body"`
MarkAdobeTargetVisitorIDStart1 int `json:"mark_adobe_target_visitor_id_start_1"`
MarkAdobeTargetVisitorIDStart2 int `json:"mark_adobe_target_visitor_id_start_2"`
MarkAdobeTargetVisitorIDEnd1 int `json:"mark_adobe_target_visitor_id_end_1"`
MarkAdobeTargetRequestStart1 int `json:"mark_adobe_target_request_start_1"`
MarkAdobeTargetVisitorIDEnd2 int `json:"mark_adobe_target_visitor_id_end_2"`
MarkAdobeTargetRequestStart2 int `json:"mark_adobe_target_request_start_2"`
MarkAdobeTargetRequestEnd2 int `json:"mark_adobe_target_request_end_2"`
MarkAdobeTargetRequestEnd1 int `json:"mark_adobe_target_request_end_1"`
MarkAdobeTargetShowBody int `json:"mark_adobe_target_show_body"`
} `json:"userTimes"`
UserTimeMarkAdobeTargetVisitorIDStart1 int `json:"userTime.mark_adobe_target_visitor_id_start_1"`
UserTimeMarkAdobeTargetVisitorIDStart2 int `json:"userTime.mark_adobe_target_visitor_id_start_2"`
UserTimeMarkAdobeTargetVisitorIDEnd1 int `json:"userTime.mark_adobe_target_visitor_id_end_1"`
UserTimeMarkAdobeTargetRequestStart1 int `json:"userTime.mark_adobe_target_request_start_1"`
UserTimeMarkAdobeTargetVisitorIDEnd2 int `json:"userTime.mark_adobe_target_visitor_id_end_2"`
UserTimeMarkAdobeTargetRequestStart2 int `json:"userTime.mark_adobe_target_request_start_2"`
UserTimeMarkAdobeTargetRequestEnd2 int `json:"userTime.mark_adobe_target_request_end_2"`
UserTimeMarkAdobeTargetRequestEnd1 int `json:"userTime.mark_adobe_target_request_end_1"`
UserTimeMarkAdobeTargetShowBody int `json:"userTime.mark_adobe_target_show_body"`
UserTimingMeasureMeasureAdobeTargetVisitorIDRequest1MboxTargetGlobalMbox int `json:"userTimingMeasure.measure_adobe_target_visitor_id_request_1_mbox_target-global-mbox"`
UserTimingMeasures []struct {
Name string `json:"name"`
StartTime float64 `json:"startTime"`
Duration float64 `json:"duration"`
} `json:"userTimingMeasures"`
UserTimingMeasureMeasureAdobeTargetVisitorIDRequest2MboxDTPosterHome int `json:"userTimingMeasure.measure_adobe_target_visitor_id_request_2_mbox_DT_PosterHome"`
UserTimingMeasureMeasureAdobeTargetRequestRequest1MboxTargetGlobalMbox int `json:"userTimingMeasure.measure_adobe_target_request_request_1_mbox_target-global-mbox"`
UserTimingMeasureMeasureAdobeTargetRequestRequest2MboxDTPosterHome int `json:"userTimingMeasure.measure_adobe_target_request_request_2_mbox_DT_PosterHome"`
UserTime int `json:"userTime"`
Custom []string `json:"custom"`
ImagesString string `json:"Images"`
Colordepth int `json:"Colordepth"`
Resolution string `json:"Resolution"`
Dpi string `json:"Dpi"`
SpeedIndex int `json:"SpeedIndex"`
VisualComplete85 int `json:"visualComplete85"`
VisualComplete90 int `json:"visualComplete90"`
VisualComplete95 int `json:"visualComplete95"`
VisualComplete99 int `json:"visualComplete99"`
VisualComplete int `json:"visualComplete"`
Render int `json:"render"`
LastVisualChange int `json:"lastVisualChange"`
ChromeUserTiming []struct {
Name string `json:"name"`
Time int `json:"time"`
} `json:"chromeUserTiming"`
ChromeUserTimingRedirectStart int `json:"chromeUserTiming.redirectStart"`
ChromeUserTimingRedirectEnd int `json:"chromeUserTiming.redirectEnd"`
ChromeUserTimingFetchStart int `json:"chromeUserTiming.fetchStart"`
ChromeUserTimingResponseEnd int `json:"chromeUserTiming.responseEnd"`
ChromeUserTimingUnloadEventStart int `json:"chromeUserTiming.unloadEventStart"`
ChromeUserTimingUnloadEventEnd int `json:"chromeUserTiming.unloadEventEnd"`
ChromeUserTimingDomLoading int `json:"chromeUserTiming.domLoading"`
ChromeUserTimingFirstLayout int `json:"chromeUserTiming.firstLayout"`
ChromeUserTimingFirstPaint int `json:"chromeUserTiming.firstPaint"`
ChromeUserTimingFirstMeaningfulPaintCandidate int `json:"chromeUserTiming.firstMeaningfulPaintCandidate"`
ChromeUserTimingDomInteractive int `json:"chromeUserTiming.domInteractive"`
ChromeUserTimingDomContentLoadedEventStart int `json:"chromeUserTiming.domContentLoadedEventStart"`
ChromeUserTimingDomContentLoadedEventEnd int `json:"chromeUserTiming.domContentLoadedEventEnd"`
ChromeUserTimingFirstContentfulPaint int `json:"chromeUserTiming.firstContentfulPaint"`
ChromeUserTimingFirstMeaningfulPaint int `json:"chromeUserTiming.firstMeaningfulPaint"`
ChromeUserTimingFirstTextPaint int `json:"chromeUserTiming.firstTextPaint"`
ChromeUserTimingFirstImagePaint int `json:"chromeUserTiming.firstImagePaint"`
ChromeUserTimingDomComplete int `json:"chromeUserTiming.domComplete"`
ChromeUserTimingLoadEventStart int `json:"chromeUserTiming.loadEventStart"`
ChromeUserTimingLoadEventEnd int `json:"chromeUserTiming.loadEventEnd"`
BlinkFeatureFirstUsed struct {
AnimatedCSSFeatures []interface{} `json:"AnimatedCSSFeatures"`
CSSFeatures struct {
CSSPropertyPosition float64 `json:"CSSPropertyPosition"`
CSSPropertyWebkitTapHighlightColor float64 `json:"CSSPropertyWebkitTapHighlightColor"`
CSSPropertyMinHeight float64 `json:"CSSPropertyMinHeight"`
CSSPropertyTextDecoration float64 `json:"CSSPropertyTextDecoration"`
CSSPropertyBorderRight float64 `json:"CSSPropertyBorderRight"`
CSSPropertyMaxHeight float64 `json:"CSSPropertyMaxHeight"`
CSSPropertyBorderTop float64 `json:"CSSPropertyBorderTop"`
CSSPropertySpeak float64 `json:"CSSPropertySpeak"`
CSSPropertyTransitionDelay float64 `json:"CSSPropertyTransitionDelay"`
CSSPropertyPaddingLeft float64 `json:"CSSPropertyPaddingLeft"`
CSSPropertyPadding float64 `json:"CSSPropertyPadding"`
CSSPropertyWhiteSpace float64 `json:"CSSPropertyWhiteSpace"`
CSSPropertyAliasWebkitBoxSizing float64 `json:"CSSPropertyAliasWebkitBoxSizing"`
CSSPropertyListStyle float64 `json:"CSSPropertyListStyle"`
CSSPropertyVerticalAlign float64 `json:"CSSPropertyVerticalAlign"`
CSSPropertyTransform float64 `json:"CSSPropertyTransform"`
CSSPropertyFill float64 `json:"CSSPropertyFill"`
CSSPropertyMinWidth float64 `json:"CSSPropertyMinWidth"`
CSSPropertyTransition float64 `json:"CSSPropertyTransition"`
CSSPropertyAliasWebkitTransformOrigin float64 `json:"CSSPropertyAliasWebkitTransformOrigin"`
CSSPropertyBorderStyle float64 `json:"CSSPropertyBorderStyle"`
CSSPropertyFlexFlow float64 `json:"CSSPropertyFlexFlow"`
CSSPropertyFontFamily float64 `json:"CSSPropertyFontFamily"`
CSSPropertyCursor float64 `json:"CSSPropertyCursor"`
CSSPropertyHeight float64 `json:"CSSPropertyHeight"`
CSSPropertyFlexBasis float64 `json:"CSSPropertyFlexBasis"`
CSSPropertyFontStyle float64 `json:"CSSPropertyFontStyle"`
CSSPropertyBorderImageSource float64 `json:"CSSPropertyBorderImageSource"`
CSSPropertyFontVariant float64 `json:"CSSPropertyFontVariant"`
CSSPropertyBoxSizing float64 `json:"CSSPropertyBoxSizing"`
CSSPropertyTextOverflow float64 `json:"CSSPropertyTextOverflow"`
CSSPropertyBorderColor float64 `json:"CSSPropertyBorderColor"`
CSSPropertyPaddingBottom float64 `json:"CSSPropertyPaddingBottom"`
CSSPropertyLeft float64 `json:"CSSPropertyLeft"`
CSSPropertyContent float64 `json:"CSSPropertyContent"`
CSSPropertyFilter float64 `json:"CSSPropertyFilter"`
CSSPropertyWidth float64 `json:"CSSPropertyWidth"`
CSSPropertyBorderImageSlice float64 `json:"CSSPropertyBorderImageSlice"`
CSSPropertyBorder float64 `json:"CSSPropertyBorder"`
CSSPropertyTouchAction float64 `json:"CSSPropertyTouchAction"`
CSSPropertyFlex float64 `json:"CSSPropertyFlex"`
CSSPropertyBackgroundColor float64 `json:"CSSPropertyBackgroundColor"`
CSSPropertyPaddingTop float64 `json:"CSSPropertyPaddingTop"`
CSSPropertyBottom float64 `json:"CSSPropertyBottom"`
CSSPropertyBorderCollapse float64 `json:"CSSPropertyBorderCollapse"`
CSSPropertyMargin float64 `json:"CSSPropertyMargin"`
CSSPropertyTop float64 `json:"CSSPropertyTop"`
CSSPropertyMarginBottom float64 `json:"CSSPropertyMarginBottom"`
CSSPropertyBorderSpacing float64 `json:"CSSPropertyBorderSpacing"`
CSSPropertyFloat float64 `json:"CSSPropertyFloat"`
CSSPropertyDisplay float64 `json:"CSSPropertyDisplay"`
CSSPropertyTransformOrigin float64 `json:"CSSPropertyTransformOrigin"`
CSSPropertyAliasWebkitUserSelect float64 `json:"CSSPropertyAliasWebkitUserSelect"`
CSSPropertyMarginTop float64 `json:"CSSPropertyMarginTop"`
CSSPropertyBorderLeft float64 `json:"CSSPropertyBorderLeft"`
CSSPropertyJustifyContent float64 `json:"CSSPropertyJustifyContent"`
CSSPropertyBoxShadow float64 `json:"CSSPropertyBoxShadow"`
CSSPropertyMaxWidth float64 `json:"CSSPropertyMaxWidth"`
CSSPropertyTextIndent float64 `json:"CSSPropertyTextIndent"`
CSSPropertyObjectFit float64 `json:"CSSPropertyObjectFit"`
CSSPropertyZIndex float64 `json:"CSSPropertyZIndex"`
CSSPropertyBorderImageWidth float64 `json:"CSSPropertyBorderImageWidth"`
CSSPropertyPaddingRight float64 `json:"CSSPropertyPaddingRight"`
CSSPropertyFlexGrow float64 `json:"CSSPropertyFlexGrow"`
CSSPropertyWebkitAppearance float64 `json:"CSSPropertyWebkitAppearance"`
CSSPropertyBorderRadius float64 `json:"CSSPropertyBorderRadius"`
CSSPropertyFlexDirection float64 `json:"CSSPropertyFlexDirection"`
CSSPropertyBorderImageRepeat float64 `json:"CSSPropertyBorderImageRepeat"`
CSSPropertyOutline float64 `json:"CSSPropertyOutline"`
CSSPropertyListStyleType float64 `json:"CSSPropertyListStyleType"`
CSSPropertyOverflow float64 `json:"CSSPropertyOverflow"`
CSSPropertyFontWeight float64 `json:"CSSPropertyFontWeight"`
CSSPropertyOverflowX float64 `json:"CSSPropertyOverflowX"`
CSSPropertyOverflowY float64 `json:"CSSPropertyOverflowY"`
CSSPropertyTextAlign float64 `json:"CSSPropertyTextAlign"`
CSSPropertyMarginRight float64 `json:"CSSPropertyMarginRight"`
CSSPropertyWebkitFontSmoothing float64 `json:"CSSPropertyWebkitFontSmoothing"`
CSSPropertyAlignItems float64 `json:"CSSPropertyAlignItems"`
CSSPropertyBackground float64 `json:"CSSPropertyBackground"`
CSSPropertyAliasWebkitFilter float64 `json:"CSSPropertyAliasWebkitFilter"`
CSSPropertyLetterSpacing float64 `json:"CSSPropertyLetterSpacing"`
CSSPropertyAliasWebkitTextSizeAdjust float64 `json:"CSSPropertyAliasWebkitTextSizeAdjust"`
CSSPropertyUserSelect float64 `json:"CSSPropertyUserSelect"`
CSSPropertyLineHeight float64 `json:"CSSPropertyLineHeight"`
CSSPropertyFont float64 `json:"CSSPropertyFont"`
CSSPropertyOpacity float64 `json:"CSSPropertyOpacity"`
CSSPropertyTextTransform float64 `json:"CSSPropertyTextTransform"`
CSSPropertyRight float64 `json:"CSSPropertyRight"`
CSSPropertyFontSize float64 `json:"CSSPropertyFontSize"`
CSSPropertyOrder float64 `json:"CSSPropertyOrder"`
CSSPropertyClear float64 `json:"CSSPropertyClear"`
CSSPropertyAliasWebkitTransform float64 `json:"CSSPropertyAliasWebkitTransform"`
CSSPropertyBorderWidth float64 `json:"CSSPropertyBorderWidth"`
CSSPropertyVisibility float64 `json:"CSSPropertyVisibility"`
CSSPropertyClip float64 `json:"CSSPropertyClip"`
CSSPropertyBorderBottom float64 `json:"CSSPropertyBorderBottom"`
CSSPropertyColor float64 `json:"CSSPropertyColor"`
CSSPropertyMarginLeft float64 `json:"CSSPropertyMarginLeft"`
} `json:"CSSFeatures"`
Features struct {
XMLHTTPRequestAsynchronous float64 `json:"XMLHttpRequestAsynchronous"`
PlaceholderAttribute float64 `json:"PlaceholderAttribute"`
PrefixedMutationObserverConstructor float64 `json:"PrefixedMutationObserverConstructor"`
XSSAuditorDisabled float64 `json:"XSSAuditorDisabled"`
XMLHTTPRequestCrossOriginWithCredentials float64 `json:"XMLHttpRequestCrossOriginWithCredentials"`
V8PerformanceNavigationAttributeGetter float64 `json:"V8Performance_Navigation_AttributeGetter"`
ContentSecurityPolicy float64 `json:"ContentSecurityPolicy"`
LangAttribute float64 `json:"LangAttribute"`
NavigatorVendor float64 `json:"NavigatorVendor"`
XMLDocument float64 `json:"XMLDocument"`
SameOriginApplicationScript float64 `json:"SameOriginApplicationScript"`
NavigatorProductSub float64 `json:"NavigatorProductSub"`
CSSFlexibleBox float64 `json:"CSSFlexibleBox"`
SecureContextCheckPassed float64 `json:"SecureContextCheckPassed"`
V8LegacyDateParser float64 `json:"V8LegacyDateParser"`
CSSValueAppearanceNone float64 `json:"CSSValueAppearanceNone"`
CSSSelectorWebkitFileUploadButton float64 `json:"CSSSelectorWebkitFileUploadButton"`
CrossOriginPropertyAccess float64 `json:"CrossOriginPropertyAccess"`
V8PerformanceTimingAttributeGetter float64 `json:"V8Performance_Timing_AttributeGetter"`
CSSSelectorWebkitInnerSpinButton float64 `json:"CSSSelectorWebkitInnerSpinButton"`
CSSAtRuleKeyframes float64 `json:"CSSAtRuleKeyframes"`
DocumentUnloadRegistered float64 `json:"DocumentUnloadRegistered"`
SandboxViaIFrame float64 `json:"SandboxViaIFrame"`
V8MessageChannelConstructor float64 `json:"V8MessageChannel_Constructor"`
CrossOriginTextScript float64 `json:"CrossOriginTextScript"`
Picture float64 `json:"Picture"`
HasIDClassTagAttribute float64 `json:"HasIDClassTagAttribute"`
CrossOriginApplicationScript float64 `json:"CrossOriginApplicationScript"`
CSSSelectorWebkitInputPlaceholder float64 `json:"CSSSelectorWebkitInputPlaceholder"`
ScrollToFragmentRequested float64 `json:"ScrollToFragmentRequested"`
SecureContextCheckForSandboxedOriginPassed float64 `json:"SecureContextCheckForSandboxedOriginPassed"`
V8CustomEventInitCustomEventMethod float64 `json:"V8CustomEvent_InitCustomEvent_Method"`
UnprefixedUserTiming float64 `json:"UnprefixedUserTiming"`
SuppressHistoryEntryWithoutUserGesture float64 `json:"SuppressHistoryEntryWithoutUserGesture"`
CrossOriginMainFrameNulledNameAccessed float64 `json:"CrossOriginMainFrameNulledNameAccessed"`
V8ScreenAvailTopAttributeGetter float64 `json:"V8Screen_AvailTop_AttributeGetter"`
V8ElementGetClientRectsMethod float64 `json:"V8Element_GetClientRects_Method"`
UnprefixedRequestAnimationFrame float64 `json:"UnprefixedRequestAnimationFrame"`
ScrollToFragmentFailWithASCII float64 `json:"ScrollToFragmentFailWithASCII"`
SVGSVGElementInXMLDocument float64 `json:"SVGSVGElementInXMLDocument"`
CSSSelectorWebkitSearchCancelButton float64 `json:"CSSSelectorWebkitSearchCancelButton"`
FormsSubmitted float64 `json:"FormsSubmitted"`
CSPWithUnsafeEval float64 `json:"CSPWithUnsafeEval"`
PendingStylesheetAddedAfterBodyStarted float64 `json:"PendingStylesheetAddedAfterBodyStarted"`
HTMLElementInnerText float64 `json:"HTMLElementInnerText"`
CookieSet float64 `json:"CookieSet"`
FontShapingNotDefGlyphObserved float64 `json:"FontShapingNotDefGlyphObserved"`
WindowPostMessage float64 `json:"WindowPostMessage"`
FormElement float64 `json:"FormElement"`
CSSValueAppearanceButton float64 `json:"CSSValueAppearanceButton"`
V8DeoptimizerDisableSpeculation float64 `json:"V8DeoptimizerDisableSpeculation"`
UnprefixedPerformanceTimeline float64 `json:"UnprefixedPerformanceTimeline"`
DocumentAll float64 `json:"DocumentAll"`
DocumentBeforeUnloadRegistered float64 `json:"DocumentBeforeUnloadRegistered"`
CSSFilterGrayscale float64 `json:"CSSFilterGrayscale"`
V8ScreenAvailLeftAttributeGetter float64 `json:"V8Screen_AvailLeft_AttributeGetter"`
HasBeforeOrAfterPseudoElement float64 `json:"HasBeforeOrAfterPseudoElement"`
DuplicatedAttribute float64 `json:"DuplicatedAttribute"`
CrossOriginTextHTML float64 `json:"CrossOriginTextHtml"`
CSSSelectorPseudoFocus float64 `json:"CSSSelectorPseudoFocus"`
HTMLSlotElement float64 `json:"HTMLSlotElement"`
MultipleOriginsInTimingAllowOrigin float64 `json:"MultipleOriginsInTimingAllowOrigin"`
CertificateTransparencyNonCompliantSubresourceInMainFrame float64 `json:"CertificateTransparencyNonCompliantSubresourceInMainFrame"`
CertificateTransparencyNonCompliantResourceInSubframe float64 `json:"CertificateTransparencyNonCompliantResourceInSubframe"`
V8StrictMode float64 `json:"V8StrictMode"`
CSSAtRuleWebkitKeyframes float64 `json:"CSSAtRuleWebkitKeyframes"`
AddEventListenerThirdArgumentIsObject float64 `json:"AddEventListenerThirdArgumentIsObject"`
CryptoGetRandomValues float64 `json:"CryptoGetRandomValues"`
CSSAtRuleFontFace float64 `json:"CSSAtRuleFontFace"`
V8ElementGetBoundingClientRectMethod float64 `json:"V8Element_GetBoundingClientRect_Method"`
V8EventInitEventMethod float64 `json:"V8Event_InitEvent_Method"`
PrefixedPageVisibility float64 `json:"PrefixedPageVisibility"`
SVGSVGElementInDocument float64 `json:"SVGSVGElementInDocument"`
SecureContextCheckFailed float64 `json:"SecureContextCheckFailed"`
SVGSVGElement float64 `json:"SVGSVGElement"`
CSSGradient float64 `json:"CSSGradient"`
LangAttributeOnHTML float64 `json:"LangAttributeOnHTML"`
CSSAtRuleMedia float64 `json:"CSSAtRuleMedia"`
InputTypeText float64 `json:"InputTypeText"`
CSSSelectorWebkitUnknownPseudo float64 `json:"CSSSelectorWebkitUnknownPseudo"`
StarInTimingAllowOrigin float64 `json:"StarInTimingAllowOrigin"`
CleanScriptElementWithNonce float64 `json:"CleanScriptElementWithNonce"`
SecureContextCheckForSandboxedOriginFailed float64 `json:"SecureContextCheckForSandboxedOriginFailed"`
V8SloppyMode int `json:"V8SloppyMode"`
CookieGet float64 `json:"CookieGet"`
} `json:"Features"`
} `json:"blinkFeatureFirstUsed"`
Step int `json:"step"`
EffectiveBps int `json:"effectiveBps"`
EffectiveBpsDoc int `json:"effectiveBpsDoc"`
DomTime int `json:"domTime"`
Aft int `json:"aft"`
TitleTime int `json:"titleTime"`
DomLoading int `json:"domLoading"`
ServerRtt int `json:"server_rtt"`
SmallImageCount int `json:"smallImageCount"`
BigImageCount int `json:"bigImageCount"`
MaybeCaptcha int `json:"maybeCaptcha"`
Pages struct {
Details string `json:"details"`
Checklist string `json:"checklist"`
Breakdown string `json:"breakdown"`
Domains string `json:"domains"`
ScreenShot string `json:"screenShot"`
} `json:"pages"`
Thumbnails struct {
Waterfall string `json:"waterfall"`
Checklist string `json:"checklist"`
ScreenShot string `json:"screenShot"`
} `json:"thumbnails"`
Images struct {
Waterfall string `json:"waterfall"`
ConnectionView string `json:"connectionView"`
Checklist string `json:"checklist"`
ScreenShot string `json:"screenShot"`
} `json:"images"`
RawData struct {
Headers string `json:"headers"`
PageData string `json:"pageData"`
RequestsData string `json:"requestsData"`
Utilization string `json:"utilization"`
Trace string `json:"trace"`
} `json:"rawData"`
Domains struct {
DertourDe struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"dertour.de"`
MetricsDertourDe struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"metrics.dertour.de"`
WwwDertourDe struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"www.dertour.de"`
WwwDwin1Com struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"www.dwin1.com"`
T2SymcbCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"t2.symcb.com"`
FontsGstaticCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"fonts.gstatic.com"`
SBtstaticCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"s.btstatic.com"`
TiSymcdCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"ti.symcd.com"`
WwwGoogleCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"www.google.com"`
SThebrighttagCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"s.thebrighttag.com"`
DBtttagCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"d.btttag.com"`
DertourBtttagCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"dertour.btttag.com"`
BatBingCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"bat.bing.com"`
WwwFacebookCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"www.facebook.com"`
AssetsAdobedtmCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"assets.adobedtm.com"`
WwwGoogleAnalyticsCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"www.google-analytics.com"`
WwwGoogleadservicesCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"www.googleadservices.com"`
AjaxGoogleapisCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"ajax.googleapis.com"`
O2MouseflowCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"o2.mouseflow.com"`
CdnMouseflowCom struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"cdn.mouseflow.com"`
DertouristikonlinegmTtOmtrdcNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"dertouristikonlinegm.tt.omtrdc.net"`
CmEveresttechNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"cm.everesttech.net"`
GoogleadsGDoubleclickNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"googleads.g.doubleclick.net"`
StatsGDoubleclickNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"stats.g.doubleclick.net"`
ConnectFacebookNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
CdnProvider string `json:"cdn_provider"`
Connections int `json:"connections"`
} `json:"connect.facebook.net"`
TrackAdformNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"track.adform.net"`
DertouristikDemdexNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"dertouristik.demdex.net"`
DpmDemdexNet struct {
Bytes int `json:"bytes"`
Requests int `json:"requests"`
Connections int `json:"connections"`
} `json:"dpm.demdex.net"`
} `json:"domains"`
Breakdown struct {
HTML struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"html"`
Js struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"js"`
CSS struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"css"`
Image struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"image"`
Flash struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"flash"`
Font struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"font"`
Video struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"video"`
Other struct {
Color []int `json:"color"`
Bytes int `json:"bytes"`
BytesUncompressed int `json:"bytesUncompressed"`
Requests int `json:"requests"`
} `json:"other"`
} `json:"breakdown"`
}
type TestRun struct {
FirstView TestView `json:"firstView"`
RepeatView TestView `json:"repeatView"`
}
type ResultData struct {
Connectivity
ID string `json:"id"`
URL string `json:"url"`
Summary string `json:"summary"`
TestUrl string `json:"testUrl"`
Location string `json:"location"`
Label string `json:"label"`
From string `json:"from"`
Mobile int `json:"mobile"`
Completed int `json:"completed"`
Tester string `json:"tester"`
TesterDNS string `json:"testerDNS"`
FirstViewOnly bool `json:"fvonly"`
SuccessfulFVRuns int `json:"successfulFVRuns"`
SuccessfulRVRuns int `json:"successfulRVRuns"`
Runs map[string]TestRun `json:"runs"`