From: Bas Schouten Date: Thu, 21 Nov 2024 14:47:17 +0000 (+0000) Subject: Adjust for naming change of P6 and S24, also change A51 button to S24, and include... X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=90ec5a1f62fb4a6d3eb9a124e646a372834cac9d;p=sp3dashboard.git Adjust for naming change of P6 and S24, also change A51 button to S24, and include Safari TP in subtest details. --- diff --git a/details-subtests.html b/details-subtests.html index 9e983d6..2da0c2c 100644 --- a/details-subtests.html +++ b/details-subtests.html @@ -35,9 +35,11 @@ } else if (searchParams.get('os') == 'android-s21') { platform = 'android-hw-s21-13-0-android-aarch64-shippable-qr'; } else if (searchParams.get('os') == 'android-a55') { - platform = 'android-hw-a55-14-0-android-aarch64-shippable-qr'; + platform = 'android-hw-a55-14-0-aarch64-shippable'; } else if (searchParams.get('os') == 'android-p6') { - platform = 'android-hw-p6-13-0-android-aarch64-shippable-qr'; + platform = 'android-hw-p6-13-0-aarch64-shippable'; + } else if (searchParams.get('os') == 'android-s24') { + platform = 'android-hw-s24-14-0-aarch64-shippable'; } function getDiffColor(diff) { @@ -124,6 +126,7 @@ let xyValuesChrome = {}; let xyValuesCaR = {}; let xyValuesSafari = {}; + let xyValuesSafariTP = {}; let signatures = {}; data.query_result.data.rows.forEach(function (row) { if (row.platform != platform) { @@ -135,6 +138,7 @@ xyValuesChrome[row.test] = []; xyValuesCaR[row.test] = []; xyValuesSafari[row.test] = []; + xyValuesSafariTP[row.test] = []; signatures[row.test] = {}; } @@ -144,6 +148,7 @@ if (row.application == 'chrome' || row.application == 'chrome-m') { xyValuesChrome[row.test].push({ x: row.push_timestamp, y: row.mean }); } if (row.application == 'custom-car' || row.application == 'cstm-car-m') { xyValuesCaR[row.test].push({ x: row.push_timestamp, y: row.mean }); } if (row.application == 'safari') { xyValuesSafari[row.test].push({ x: row.push_timestamp, y: row.mean }); } + if (row.application == 'safari-tp') { xyValuesSafariTP[row.test].push({ x: row.push_timestamp, y: row.mean }); } }); let i = 0; @@ -215,6 +220,16 @@ }); } + if (xyValuesSafariTP[test].length > 0) { + cfg.data.datasets.push({ + label: 'Safari TP', + pointRadius: 4, + pointBackgroundColor: "#777", + pointBorderColor: "#44444444", + data: xyValuesSafari[test] + }); + } + charts.push(new Chart("myChart-" + test, cfg)); } } @@ -300,7 +315,7 @@ - +
WindowsWindows (New)Linux
Mac OSXMac OSX (M2)
Android (A51)Android (A55)Android (Pixel 6)
Android (S24)Android (A55)Android (Pixel 6)
FirefoxChromeCaR
diff --git a/details.html b/details.html index 35ff5c2..16a2f61 100644 --- a/details.html +++ b/details.html @@ -36,6 +36,9 @@ total_sig_car = 4836588; platform = 'macosx1015-64-shippable-qr'; } else if (searchParams.get('os') == 'windows-new') { + total_sig_firefox = 87472; + total_sig_chrome = 92125; + total_sig_car = 92557; platform = 'windows11-64-shippable-qr'; } else if (searchParams.get('os') == 'osxm2') { total_sig_firefox = 5042783; @@ -57,10 +60,10 @@ likelyDataURL = 'https://sql.telemetry.mozilla.org/api/queries/90959/results.json?api_key=uuoiM8Xdob1HcGB5UxdFG3TvZi6D08kfNR5pWC9O'; timeWindow = '4wk'; } else if (searchParams.get('os') == 'android-s24') { - total_sig_firefox = 5052258; - total_sig_chrome = 5051172; - total_sig_car = 5052905; - platform = 'android-hw-s24-14-0-android-aarch64-shippable-qr'; + total_sig_firefox = 274646; + total_sig_chrome = 275618; + total_sig_car = 280648; + platform = 'android-hw-s24-14-0-aarch64-shippable'; likelyDataURL = 'https://sql.telemetry.mozilla.org/api/queries/90959/results.json?api_key=uuoiM8Xdob1HcGB5UxdFG3TvZi6D08kfNR5pWC9O'; timeWindow = '4wk'; } else if (searchParams.get('os') == 'android-a55') { @@ -71,10 +74,10 @@ likelyDataURL = 'https://sql.telemetry.mozilla.org/api/queries/90959/results.json?api_key=uuoiM8Xdob1HcGB5UxdFG3TvZi6D08kfNR5pWC9O'; timeWindow = '4wk'; } else if (searchParams.get('os') == 'android-p6') { - total_sig_firefox = 5051862; - total_sig_chrome = 5050973; - total_sig_car = 5053103; - platform = 'android-hw-p6-13-0-android-aarch64-shippable-qr'; + total_sig_firefox = 275091; + total_sig_chrome = 275819; + total_sig_car = 281010; + platform = 'android-hw-p6-13-0-aarch64-shippable'; likelyDataURL = 'https://sql.telemetry.mozilla.org/api/queries/90959/results.json?api_key=uuoiM8Xdob1HcGB5UxdFG3TvZi6D08kfNR5pWC9O'; timeWindow = '4wk'; } @@ -517,7 +520,7 @@ Overall WindowsWindows (New)Linux Mac OSXMac OSX (M2) - Android (A51)Android (A55)Android (Pixel 6) + Android (S24)Android (A55)Android (Pixel 6)

Current Status (lower is better)

diff --git a/index.html b/index.html index 43842fe..cab3e9f 100644 --- a/index.html +++ b/index.html @@ -124,8 +124,12 @@ return 0.5; case 'android-hw-p6-13-0-android-aarch64-shippable-qr': return 0.25; + case 'android-hw-p6-13-0-aarch64-shippable': + return 0.25; case 'android-hw-s24-14-0-android-aarch64-shippable-qr': return 0.25; + case 'android-hw-s24-14-0-aarch64-shippable': + return 0.25; default: return 0.0; } @@ -366,7 +370,7 @@ Overall WindowsWindows (New)Linux Mac OSXMac OSX (M2) - Android (A51)Android (A55)Android (Pixel 6) + Android (S24)Android (A55)Android (Pixel 6)