sitespeed.io 34.7.0 → 34.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 34.7.1 - 2024-07-20
|
|
4
|
+
### Fixed
|
|
5
|
+
* Fix so the link to the geckoprofiler data works/shows again [#4234](https://github.com/sitespeedio/sitespeed.io/pull/4234).
|
|
6
|
+
|
|
3
7
|
## 34.7.0 - 2024-07-15
|
|
4
8
|
### Added
|
|
5
9
|
* Update to Browsertime [22.6.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#2260---2024-07-15) [#4226](https://github.com/sitespeedio/sitespeed.io/pull/4226).
|
|
@@ -4,53 +4,52 @@
|
|
|
4
4
|
|
|
5
5
|
if cpu
|
|
6
6
|
small
|
|
7
|
-
||
|
|
8
7
|
if cpu.longTasks
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
a(href='#long-tasks') CPU Long Tasks
|
|
9
|
+
| |
|
|
11
10
|
if browsertime && browsertime.timings && browsertime.timings.firstInput !== undefined
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
a(href='#first-input-delay') First Input Delay
|
|
12
|
+
| |
|
|
14
13
|
if cpu.categories
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
a(href='#cpu-time-spent') CPU Time Spent
|
|
15
|
+
| |
|
|
17
16
|
if cpu.urls && cpu.urls.length > 0
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
a(href='#cpu-time-spent-per-request') CPU Time Spent Per Request
|
|
18
|
+
| |
|
|
20
19
|
if pageInfo.data.thirdparty
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
a(href='#cpu-time-per-tool') CPU Time Per Tool/Domain
|
|
21
|
+
| |
|
|
23
22
|
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
a#cpu
|
|
24
|
+
h2 CPU
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
26
|
+
if cpu && cpu.events && !options.browsertime.enableProfileRun
|
|
27
|
+
p Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
|
|
28
|
+
.downloads
|
|
29
|
+
if options.browsertime.chrome && options.browsertime.chrome.timeline
|
|
30
|
+
- const tracePath = 'data/trace-' + (runNumber? runNumber : 1) + '.json.gz'
|
|
31
|
+
a.button.button-download(href=tracePath, download=downloadName + '-timeline.json.gz') Download trace log
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
if options.browsertime && options.browsertime.firefox && options.browsertime.firefox.geckoProfiler && options.browser === 'firefox' && !options.browsertime.enableProfileRun
|
|
34
|
+
p Download the Firefox Geckoprofiler trace and drag and drop it into
|
|
35
|
+
a(href='https://profiler.firefox.com') https://profiler.firefox.com
|
|
36
|
+
.downloads
|
|
37
|
+
- const tracePath = 'data/geckoProfile-' + (runNumber? runNumber : 1) + '.json.gz'
|
|
38
|
+
a.button.button-download(href=tracePath, download=downloadName + '-geckoProfile.json.gz') Download trace
|
|
39
|
+
|
|
40
|
+
if options.browsertime && options.browsertime.enableProfileRun
|
|
41
|
+
if options.browser === 'firefox'
|
|
35
42
|
p Download the Firefox Geckoprofiler trace and drag and drop it into
|
|
36
43
|
a(href='https://profiler.firefox.com') https://profiler.firefox.com
|
|
37
44
|
.downloads
|
|
38
|
-
- const tracePath = 'data/geckoProfile-
|
|
39
|
-
a.button.button-download(href=tracePath, download=downloadName + '-geckoProfile.json.gz') Download trace
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
a(href='https://profiler.firefox.com') https://profiler.firefox.com
|
|
45
|
-
.downloads
|
|
46
|
-
- const tracePath = 'data/geckoProfile-1-extra.json.gz'
|
|
47
|
-
a.button.button-download(href=tracePath, download=downloadName + '-geckoProfile.json.gz') Download extra run trace log
|
|
48
|
-
else if options.browser === 'chrome'
|
|
49
|
-
p Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
|
|
50
|
-
- const tracePath = 'data/trace-1-extra-run.json.gz'
|
|
51
|
-
a.button.button-download(href=tracePath, download=downloadName + '-timeline.json.gz') Download extra run trace log
|
|
45
|
+
- const tracePath = 'data/geckoProfile-1-extra.json.gz'
|
|
46
|
+
a.button.button-download(href=tracePath, download=downloadName + '-geckoProfile.json.gz') Download extra run trace log
|
|
47
|
+
else if options.browser === 'chrome'
|
|
48
|
+
p Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
|
|
49
|
+
- const tracePath = 'data/trace-1-extra-run.json.gz'
|
|
50
|
+
a.button.button-download(href=tracePath, download=downloadName + '-timeline.json.gz') Download extra run trace log
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
if cpu && cpu.longTasks
|
|
54
53
|
a#long-tasks
|
|
55
54
|
h3 Long Tasks
|
|
56
55
|
p Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.
|
|
@@ -109,81 +108,79 @@ if cpu
|
|
|
109
108
|
td #{task.attribution[0].containerId}
|
|
110
109
|
td #{task.attribution[0].containerName}
|
|
111
110
|
td.url.assetsurl #{task.attribution[0].containerSrc}
|
|
112
|
-
td #{task.attribution[0].containerType}
|
|
113
|
-
else
|
|
114
|
-
p No long tasks on the page!
|
|
111
|
+
td #{task.attribution[0].containerType}
|
|
115
112
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
113
|
+
if browsertime && browsertime.timings && browsertime.timings.firstInput !== undefined
|
|
114
|
+
a#first-input-delay
|
|
115
|
+
h3 First Input Delay
|
|
116
|
+
table
|
|
117
|
+
tr
|
|
118
|
+
th Name
|
|
119
|
+
th Delay
|
|
120
|
+
th Duration
|
|
121
|
+
th Start Time
|
|
122
|
+
th Processing Start
|
|
123
|
+
th Processing End
|
|
124
|
+
tr
|
|
125
|
+
td #{browsertime.timings.firstInput.name}
|
|
126
|
+
td #{h.time.ms(browsertime.timings.firstInput.delay)}
|
|
127
|
+
td #{h.time.ms(browsertime.timings.firstInput.duration)}
|
|
128
|
+
td #{h.time.ms(browsertime.timings.firstInput.startTime)}
|
|
129
|
+
td #{h.time.ms(browsertime.timings.firstInput.processingStart)}
|
|
130
|
+
td #{h.time.ms(browsertime.timings.firstInput.processingEnd)}
|
|
134
131
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
132
|
+
if cpu && cpu.categories
|
|
133
|
+
a#cpu-time-spent
|
|
134
|
+
h3 CPU time spent
|
|
135
|
+
p Calculated using Tracium.
|
|
139
136
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
137
|
+
.row
|
|
138
|
+
.one-half.column
|
|
139
|
+
if cpu.categories
|
|
140
|
+
table
|
|
141
|
+
tr
|
|
142
|
+
th(colspan='2') Categories (ms)
|
|
143
|
+
each value, name in cpu.categories
|
|
144
144
|
tr
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
145
|
+
td #{name}
|
|
146
|
+
td #{value.toFixed(0)}
|
|
147
|
+
.one-half.column
|
|
148
|
+
if cpu.events
|
|
149
|
+
table
|
|
150
|
+
tr
|
|
151
|
+
th(colspan='2') Events (ms)
|
|
152
|
+
- const cpuEvents = []
|
|
153
|
+
- for (let key of Object.keys(cpu.events)) {cpuEvents.push({name: key, value: cpu.events[key] })}
|
|
154
|
+
- cpuEvents.sort((a,b)=>{return b.value - a.value})
|
|
155
|
+
each event in cpuEvents
|
|
153
156
|
tr
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
- for (let key of Object.keys(cpu.events)) {cpuEvents.push({name: key, value: cpu.events[key] })}
|
|
157
|
-
- cpuEvents.sort((a,b)=>{return b.value - a.value})
|
|
158
|
-
each event in cpuEvents
|
|
159
|
-
tr
|
|
160
|
-
td #{event.name}
|
|
161
|
-
td #{event.value.toFixed(0)}
|
|
157
|
+
td #{event.name}
|
|
158
|
+
td #{event.value.toFixed(0)}
|
|
162
159
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
160
|
+
if cpu.urls && cpu.urls.length > 0
|
|
161
|
+
a#cpu-time-spent-per-request
|
|
162
|
+
h3 Time spent per request
|
|
163
|
+
table
|
|
164
|
+
tr
|
|
165
|
+
th URL
|
|
166
|
+
th CPU time (ms)
|
|
167
|
+
each data in cpu.urls
|
|
167
168
|
tr
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
tr
|
|
172
|
-
td.url.assetsurl
|
|
173
|
-
a(href=data.url)= data.url
|
|
174
|
-
td #{data.value.toFixed(0)}
|
|
169
|
+
td.url.assetsurl
|
|
170
|
+
a(href=data.url)= data.url
|
|
171
|
+
td #{data.value.toFixed(0)}
|
|
175
172
|
|
|
176
|
-
|
|
177
|
-
|
|
173
|
+
if pageInfo.data.thirdparty
|
|
174
|
+
- const thirdparty = medianRun ? pageInfo.data.thirdparty.pageSummary.runs[medianRun.runIndex - 1] : pageInfo.data.thirdparty.run
|
|
178
175
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
176
|
+
if thirdparty && thirdparty.cpuPerTool && Object.keys(thirdparty.cpuPerTool).length > 0
|
|
177
|
+
a#cpu-time-per-tool
|
|
178
|
+
h3 CPU time spent
|
|
179
|
+
table
|
|
180
|
+
tr
|
|
181
|
+
th Tool/domain
|
|
182
|
+
th Time (ms)
|
|
183
|
+
each tool in Object.keys(thirdparty.cpuPerTool)
|
|
184
|
+
tr
|
|
185
|
+
td #{tool}
|
|
186
|
+
td.number #{thirdparty.cpuPerTool[tool].toFixed(1)}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "34.7.
|
|
3
|
+
"version": "34.7.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "34.7.
|
|
9
|
+
"version": "34.7.1",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "3.609.0",
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
6
6
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
7
7
|
},
|
|
8
|
-
"version": "34.7.
|
|
8
|
+
"version": "34.7.1",
|
|
9
9
|
"description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"performance",
|