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
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Adding a new metric? We have docs for that!
# https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
---
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
$tags:
- 'Core :: DOM: Core & HTML'
perf:
page_load:
type: event
description: >
Recorded when a top level content document has been loaded.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1759744
- https://bugzilla.mozilla.org/show_bug.cgi?id=1799727
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834774
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1759744#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1799727#c4
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834774#c3
notification_emails:
- perf-telemetry-alerts@mozilla.com
- dpalmeiro@mozilla.com
expires: never
extra_keys:
load_time:
description:
"Time between loadEventStart and navigationStart, in ms."
type: quantity
unit: ms
dns_lookup_time:
description:
"Time taken to perform dns lookup of the top level document, in ms."
type: quantity
unit: ms
response_time:
description:
"Time between responseStart and navigationStart, in ms."
type: quantity
unit: ms
fcp_time:
description:
"Time between firstContentfulPaint and naviationStart, in ms."
type: quantity
unit: ms
js_exec_time:
description:
"Time spent executing JS during page load, in ms."
type: quantity
unit: ms
redirect_time:
type: quantity
description:
"Time spent in redirections for the top level document."
unit: ms
redirect_count:
description:
"Number of redirections for the top level document."
type: quantity
unit: integer
load_type:
description:
"One of normal,reload,stop,link,history,error or other."
type: string
same_origin_nav:
description:
"If true, a normal navigation was performed on the same origin."
type: boolean
http_ver:
description:
"Version of HTTP protocol used."
type: quantity
unit: integer
trr_domain:
description:
"TRR domain used."
type: string
send_in_pings:
- pageload
|