From 2b599560920fd568aae0634d82caad4763cf0aea Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:45:56 +0900 Subject: [PATCH] Update backend-memory-report.mjs --- .github/scripts/backend-memory-report.mjs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/scripts/backend-memory-report.mjs b/.github/scripts/backend-memory-report.mjs index 131c0a6277..7a20d54bde 100644 --- a/.github/scripts/backend-memory-report.mjs +++ b/.github/scripts/backend-memory-report.mjs @@ -207,11 +207,11 @@ function renderJsFootprintMetricTable(base, head) { const metricRows = [ ['Loaded JS modules', 'loadedJsModules', formatNumber], ['Loaded JS source', 'loadedJsSourceBytes', formatBytes], - ['Loaded JS gzip estimate', 'loadedJsGzipBytes', formatBytes], - ['AST nodes', 'astNodeCount', formatNumber], - ['Functions', 'functionCount', formatNumber], - ['Classes', 'classCount', formatNumber], - ['String literals', 'stringLiteralBytes', formatBytes], + //['Loaded JS gzip estimate', 'loadedJsGzipBytes', formatBytes], + //['AST nodes', 'astNodeCount', formatNumber], + //['Functions', 'functionCount', formatNumber], + //['Classes', 'classCount', formatNumber], + //['String literals', 'stringLiteralBytes', formatBytes], ['External packages loaded', 'externalPackageCount', formatNumber], ['Native addon packages', 'nativeAddonPackageCount', formatNumber], ]; @@ -364,8 +364,6 @@ function renderJsFootprintSection(base, head) { const lines = [ '### Runtime Loaded JS Footprint', '', - '_Measured in a separate backend startup with loader tracing after the same warmup requests. This does not affect the memory table above._', - '', renderJsFootprintMetricTable(base, head), '', '#### Load Phase Breakdown',