Skip to content

Commit 93bba9a

Browse files
authored
Correct report check to replace non-existent report (#916)
* Correct report check to replaxce non-existent report * Remove non-existent report * Remove old report from fugu screen
1 parent 2be7f66 commit 93bba9a

2 files changed

Lines changed: 3 additions & 18 deletions

File tree

config/reports.json

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -998,20 +998,6 @@
998998
]
999999
}
10001000
},
1001-
"webSocketStream": {
1002-
"name": "WebSocketStream",
1003-
"type": "%",
1004-
"downIsBad": true,
1005-
"description": "This metric tracks the percentage of pages that transmit messages via the [WebSocketStream API](https://web.dev/websocketstream/).",
1006-
"histogram": {
1007-
"enabled": false
1008-
},
1009-
"timeseries": {
1010-
"fields": [
1011-
"percent"
1012-
]
1013-
}
1014-
},
10151001
"screenWakeLock": {
10161002
"name": "Screen Wake Lock",
10171003
"type": "%",
@@ -1319,8 +1305,7 @@
13191305
"contentIndex",
13201306
"notificationTriggers",
13211307
"quicTransport",
1322-
"idleDetection",
1323-
"webSocketStream"
1308+
"idleDetection"
13241309
],
13251310
"graphic": {
13261311
"bgcolor": "#97b5b9",

tools/scripts/test_reports.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ LENSES="drupal magento wordpress top1k top10k top100k top1m"
2323
# We test the first and last report for each lens
2424
REPORT_MONTHLY_URLS=$(cat <<-END
2525
https://cdn.httparchive.org/reports/${REPORT_DATE}/bootupJs.json
26-
https://cdn.httparchive.org/reports/${REPORT_DATE}/webSocketStream.json
26+
https://cdn.httparchive.org/reports/${REPORT_DATE}/tcp.json
2727
https://cdn.httparchive.org/reports/${CRUX_REPORT_DATE}/cruxCls.json
2828
https://cdn.httparchive.org/reports/${CRUX_REPORT_DATE}/cruxOl.json
2929
END
@@ -33,7 +33,7 @@ for LENS in ${LENSES}
3333
do
3434
REPORT_MONTHLY_URLS_LENS=$(cat <<-END
3535
https://cdn.httparchive.org/reports/${LENS}/${REPORT_DATE}/bootupJs.json
36-
https://cdn.httparchive.org/reports/${LENS}/${REPORT_DATE}/webSocketStream.json
36+
https://cdn.httparchive.org/reports/${LENS}/${REPORT_DATE}/tcp.json
3737
https://cdn.httparchive.org/reports/${LENS}/${CRUX_REPORT_DATE}/cruxCls.json
3838
https://cdn.httparchive.org/reports/${LENS}/${CRUX_REPORT_DATE}/cruxOl.json
3939
END

0 commit comments

Comments
 (0)