mirror of
https://github.com/status-im/status-app-benchmarks.git
synced 2026-08-27 11:11:13 +00:00
360 lines
16 KiB
HTML
360 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Dashboard — Status App Benchmarks</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
--bg: #f6f8fa;
|
|
--card: #ffffff;
|
|
--text: #1f2328;
|
|
--muted: #656d76;
|
|
--border: #d0d7de;
|
|
--link: #0969da;
|
|
--header-bg: #24292f;
|
|
--header-text: #ffffff;
|
|
--accent-data: #57606a;
|
|
--accent-data-bg: #eaeef2;
|
|
--accent-wallet: #6e40c9;
|
|
--accent-wallet-bg: #f3f0ff;
|
|
--accent-messenger: #1a7f37;
|
|
--accent-messenger-bg: #dafbe1;
|
|
--accent-communities: #bc4c00;
|
|
--accent-communities-bg: #fff1e5;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--bg: #0d1117;
|
|
--card: #161b22;
|
|
--text: #e6edf3;
|
|
--muted: #8b949e;
|
|
--border: #30363d;
|
|
--link: #58a6ff;
|
|
--header-bg: #010409;
|
|
--header-text: #e6edf3;
|
|
--accent-data: #8b949e;
|
|
--accent-data-bg: #21262d;
|
|
--accent-wallet: #a371f7;
|
|
--accent-wallet-bg: #2b1f47;
|
|
--accent-messenger: #3fb950;
|
|
--accent-messenger-bg: #12261e;
|
|
--accent-communities: #f0883e;
|
|
--accent-communities-bg: #2d1f14;
|
|
}
|
|
}
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.5;
|
|
}
|
|
header {
|
|
background: var(--header-bg);
|
|
color: var(--header-text);
|
|
padding: 1.25rem 1.5rem;
|
|
}
|
|
header a { color: var(--header-text); text-decoration: none; }
|
|
header a:hover { text-decoration: underline; }
|
|
main { max-width: 1200px; margin: 0 auto; padding: 1.5rem; }
|
|
h1 { margin: 0 0 0.25rem; font-size: 1.5rem; }
|
|
.subtitle { color: var(--muted); margin: 0; }
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 1rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
.card {
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
transition: border-color 0.15s;
|
|
}
|
|
.card:hover { border-color: var(--link); }
|
|
.card h2 { margin: 0 0 0.5rem; font-size: 1.1rem; }
|
|
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
|
|
.profile-fact-groups {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
margin-top: 0.85rem;
|
|
}
|
|
.stat-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.35rem;
|
|
align-items: center;
|
|
}
|
|
.stat-group-label {
|
|
font-size: 0.68rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
min-width: 5.5rem;
|
|
}
|
|
.stat-chip {
|
|
display: inline-flex;
|
|
align-items: baseline;
|
|
gap: 0.2rem;
|
|
border-radius: 999px;
|
|
padding: 0.15rem 0.55rem;
|
|
font-size: 0.76rem;
|
|
font-weight: 500;
|
|
line-height: 1.35;
|
|
}
|
|
.stat-chip strong { font-weight: 700; }
|
|
.stat-chip.stat-zero { opacity: 0.55; }
|
|
.stat-data {
|
|
align-self: flex-start;
|
|
background: var(--accent-data-bg);
|
|
color: var(--accent-data);
|
|
font-weight: 600;
|
|
}
|
|
.stat-wallet .stat-group-label { color: var(--accent-wallet); }
|
|
.stat-wallet .stat-chip {
|
|
background: var(--accent-wallet-bg);
|
|
color: var(--accent-wallet);
|
|
}
|
|
.stat-messenger .stat-group-label { color: var(--accent-messenger); }
|
|
.stat-messenger .stat-chip {
|
|
background: var(--accent-messenger-bg);
|
|
color: var(--accent-messenger);
|
|
}
|
|
.stat-communities .stat-group-label { color: var(--accent-communities); }
|
|
.stat-communities .stat-chip {
|
|
background: var(--accent-communities-bg);
|
|
color: var(--accent-communities);
|
|
}
|
|
.profile-details {
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem;
|
|
margin: 1rem 0 1.5rem;
|
|
}
|
|
.profile-details h2 { margin: 0 0 0.75rem; font-size: 1.05rem; }
|
|
.profile-details-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
.profile-detail-section {
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 0.75rem 0.85rem;
|
|
}
|
|
.profile-detail-section h3 {
|
|
margin: 0 0 0.5rem;
|
|
font-size: 0.82rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.profile-detail-section.stat-wallet {
|
|
border-color: color-mix(in srgb, var(--accent-wallet) 35%, var(--border));
|
|
}
|
|
.profile-detail-section.stat-wallet h3 { color: var(--accent-wallet); }
|
|
.profile-detail-section.stat-messenger {
|
|
border-color: color-mix(in srgb, var(--accent-messenger) 35%, var(--border));
|
|
}
|
|
.profile-detail-section.stat-messenger h3 { color: var(--accent-messenger); }
|
|
.profile-detail-section.stat-communities {
|
|
border-color: color-mix(in srgb, var(--accent-communities) 35%, var(--border));
|
|
}
|
|
.profile-detail-section.stat-communities h3 { color: var(--accent-communities); }
|
|
.profile-detail-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.35rem;
|
|
}
|
|
.area-group { margin-top: 2rem; }
|
|
.area-group > h2 { margin-bottom: 0.75rem; }
|
|
.area-empty {
|
|
border: 1px dashed var(--border);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem;
|
|
color: var(--muted);
|
|
}
|
|
.summary-link {
|
|
display: inline-block;
|
|
margin-top: 1rem;
|
|
color: var(--link);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
.summary-link:hover { text-decoration: underline; }
|
|
.summary-profile { margin: 2rem 0; }
|
|
.summary-profile h2 { margin-bottom: 0.25rem; }
|
|
.summary-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
margin-top: 0.75rem;
|
|
font-size: 0.88rem;
|
|
}
|
|
.summary-table th,
|
|
.summary-table td {
|
|
padding: 0.65rem 0.75rem;
|
|
border-bottom: 1px solid var(--border);
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
.summary-table th { color: var(--muted); font-size: 0.78rem; }
|
|
.summary-table .load-time-column {
|
|
min-width: 145px;
|
|
white-space: nowrap;
|
|
}
|
|
.summary-table .reference-column {
|
|
min-width: 105px;
|
|
white-space: nowrap;
|
|
}
|
|
.summary-table .measured-column {
|
|
min-width: 6.5rem;
|
|
}
|
|
.measured-cell {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.15rem;
|
|
line-height: 1.2;
|
|
}
|
|
.measured-build {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 0.82rem;
|
|
}
|
|
.measured-date {
|
|
color: var(--muted);
|
|
font-size: 0.78rem;
|
|
}
|
|
.summary-table tr:last-child td { border-bottom: 0; }
|
|
.load-time-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.4rem;
|
|
}
|
|
.metric-value { white-space: nowrap; font-weight: 600; }
|
|
.status {
|
|
display: inline-block;
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
padding: 0.1rem 0.45rem;
|
|
margin: 0 0.2rem 0.2rem 0;
|
|
white-space: nowrap;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
}
|
|
.status-fast { color: #1a7f37; border-color: #1a7f37; }
|
|
.status-ok { color: var(--link); border-color: var(--link); }
|
|
.status-ok-warn { color: #9a6700; border-color: #9a6700; }
|
|
.status-slow { color: #cf222e; border-color: #cf222e; }
|
|
.status-neutral,
|
|
.status-no-data,
|
|
.status-not-tested { color: var(--muted); }
|
|
.speed-legend {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.25rem 0.75rem;
|
|
margin-top: 0.2rem;
|
|
}
|
|
.speed-fast { color: #1a7f37; font-weight: 600; }
|
|
.speed-ok { color: var(--link); font-weight: 600; }
|
|
.speed-ok-warn { color: #9a6700; font-weight: 600; }
|
|
.speed-slow { color: #cf222e; font-weight: 600; }
|
|
.reference-value { font-weight: 600; white-space: nowrap; }
|
|
.reference-parity,
|
|
.reference-improvement { color: #1a7f37; }
|
|
.reference-regression { color: #cf222e; }
|
|
.reference-neutral { color: var(--muted); }
|
|
section.chart {
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem 1.25rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
section.chart iframe {
|
|
width: 100%;
|
|
height: 600px;
|
|
border: 0;
|
|
border-radius: 4px;
|
|
background: #fff;
|
|
display: block;
|
|
}
|
|
.chart-footnote {
|
|
color: var(--muted);
|
|
font-size: 0.85rem;
|
|
margin: 0.5rem 0 0;
|
|
}
|
|
section.chart-placeholder {
|
|
border-style: dashed;
|
|
background: transparent;
|
|
}
|
|
.placeholder-note {
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
margin: 0;
|
|
font-style: italic;
|
|
}
|
|
.note { color: var(--muted); font-size: 0.9rem; margin: 1rem 0 0; }
|
|
nav.back { margin-bottom: 1rem; }
|
|
nav.back a { color: var(--link); text-decoration: none; }
|
|
nav.back a:hover { text-decoration: underline; }
|
|
section.machine-info {
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem;
|
|
margin: 1rem 0 1.5rem;
|
|
font-size: 0.95rem;
|
|
}
|
|
section.machine-info h2 {
|
|
margin: 0 0 0.5rem;
|
|
font-size: 1.05rem;
|
|
}
|
|
section.machine-info dl {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
gap: 0.5rem 1.5rem;
|
|
margin: 0;
|
|
}
|
|
section.machine-info dt {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
font-size: 0.85rem;
|
|
}
|
|
section.machine-info dd {
|
|
margin: 0.1rem 0 0;
|
|
font-weight: 500;
|
|
}
|
|
@media (max-width: 700px) {
|
|
main { padding: 1rem; }
|
|
.summary-table,
|
|
.summary-table tbody,
|
|
.summary-table tr,
|
|
.summary-table td { display: block; width: 100%; }
|
|
.summary-table thead { display: none; }
|
|
.summary-table tr { padding: 0.45rem 0; border-bottom: 1px solid var(--border); }
|
|
.summary-table tr:last-child { border-bottom: 0; }
|
|
.summary-table td { border: 0; padding: 0.25rem 0.75rem; }
|
|
.summary-table td::before {
|
|
content: attr(data-label) ": ";
|
|
color: var(--muted);
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header><a href="index.html">Status App Benchmarks</a></header>
|
|
<main><h1>Windows Benchmark Dashboard</h1><p class="subtitle">Performance metrics from the last 30 days. Each point is one nightly run — x-axis shows build date; hover a point for commit hash. Load-time charts plot the average of runs per build.</p><section class="machine-info"><h2>System info</h2><p class="subtitle">Latest recorded environment · Jul 22, 2026 · commit abe104848</p><dl><div><dt>Host</dt><dd>WINDOWS-NODE-01</dd></div><div><dt>Windows</dt><dd>Windows Server 2022 Standard 21H2</dd></div><div><dt>OS build</dt><dd>20348.1487</dd></div><div><dt>CPU</dt><dd>AMD Ryzen 7 PRO 8700GE w/ Radeon 780M Graphics</dd></div><div><dt>RAM</dt><dd>63 GB</dd></div></dl></section><a class="summary-link" href="summary.html">View scenario summary →</a><h2 style="margin-top:2rem">User profiles</h2><div class="grid"><a class="card" href="wallet-fresh.html"><h2>New user profile</h2><p>Newly created user profile (no-preseeded user data)</p><div class="profile-fact-groups"><span class="stat-chip stat-data">No pre-seeded data</span><div class="stat-group stat-wallet"><span class="stat-group-label">Wallet</span><span class="stat-chip stat-wallet"><strong>1</strong> accounts</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> tokens</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> NFTs</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> txs</span></div><div class="stat-group stat-messenger"><span class="stat-group-label">Messenger</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> DMs</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> groups</span></div><div class="stat-group stat-communities"><span class="stat-group-label">Communities</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> joined</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> spectated</span></div></div></a><a class="card" href="wallet-wallet-load.html"><h2>Returning user (heavy wallet account)</h2><p>Returning user with wallet_load profile (~34 MB user data).</p><div class="profile-fact-groups"><span class="stat-chip stat-data">~34 MB user data</span><div class="stat-group stat-wallet"><span class="stat-group-label">Wallet</span><span class="stat-chip stat-wallet"><strong>3</strong> accounts</span><span class="stat-chip stat-wallet"><strong>83</strong> tokens</span><span class="stat-chip stat-wallet"><strong>166</strong> NFTs</span><span class="stat-chip stat-wallet"><strong>736</strong> txs</span></div><div class="stat-group stat-messenger"><span class="stat-group-label">Messenger</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> DMs</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> groups</span></div><div class="stat-group stat-communities"><span class="stat-group-label">Communities</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> joined</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> spectated</span></div></div></a><a class="card" href="wallet-wallet-load-alex.html"><h2>Returning user (medium heavy wallet account from Alex)</h2><p>Returning user with wallet_load_alex profile (~35 MB user data).</p><div class="profile-fact-groups"><span class="stat-chip stat-data">~35 MB user data</span><div class="stat-group stat-wallet"><span class="stat-group-label">Wallet</span><span class="stat-chip stat-wallet"><strong>4</strong> accounts</span><span class="stat-chip stat-wallet"><strong>144</strong> tokens</span><span class="stat-chip stat-wallet"><strong>773</strong> NFTs</span><span class="stat-chip stat-wallet"><strong>5239</strong> txs</span></div><div class="stat-group stat-messenger"><span class="stat-group-label">Messenger</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> DMs</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> groups</span></div><div class="stat-group stat-communities"><span class="stat-group-label">Communities</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> joined</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> spectated</span></div></div></a><a class="card" href="community-populated.html"><h2>Returning user (Status community member)</h2><p>Returning user with Status community already joined.</p><div class="profile-fact-groups"><span class="stat-chip stat-data">TBD user data</span><div class="stat-group stat-wallet"><span class="stat-group-label">Wallet</span><span class="stat-chip stat-wallet"><strong>1</strong> accounts</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> tokens</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> NFTs</span><span class="stat-chip stat-wallet stat-zero"><strong>0</strong> txs</span></div><div class="stat-group stat-messenger"><span class="stat-group-label">Messenger</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> DMs</span><span class="stat-chip stat-messenger stat-zero"><strong>0</strong> groups</span></div><div class="stat-group stat-communities"><span class="stat-group-label">Communities</span><span class="stat-chip stat-communities"><strong>1</strong> joined</span><span class="stat-chip stat-communities stat-zero"><strong>0</strong> spectated</span></div></div></a></div><p class="note">Raw CSV history lives in the repository <code>data/</code> folder. PNG charts on GitHub: <a href="https://github.com/status-im/status-app-benchmarks/blob/master/docs/desktop/README.md">docs/desktop/README.md</a>.</p></main>
|
|
</body>
|
|
</html>
|