From 02d12663cd5e7ba40f2ccc329c85a6784d93c2d2 Mon Sep 17 00:00:00 2001 From: Johannes Date: Fri, 21 Oct 2022 16:44:52 +0200 Subject: [PATCH] spend callstack without percentage values https://github.com/microsoft/vscode/issues/163819 --- src/vs/platform/profiling/electron-main/windowProfiling.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/profiling/electron-main/windowProfiling.ts b/src/vs/platform/profiling/electron-main/windowProfiling.ts index 44a94d3f3e2c3..762d8305cc529 100644 --- a/src/vs/platform/profiling/electron-main/windowProfiling.ts +++ b/src/vs/platform/profiling/electron-main/windowProfiling.ts @@ -99,8 +99,8 @@ export class WindowProfiler { totalTime: sample.totalTime, percentage: sample.percentage, functionName: sample.location, - callstack: sample.caller.map(c => `${c.percentage}|${c.location}`).join('<'), - extensionId: '' + callstack: sample.caller.map(c => c.location).join('<'), + extensionId: '<>' }; this._telemetryService.publicLog2('prof.freeze.sample', data);