@@ -277,7 +277,8 @@ export class WorkbenchShell extends Disposable {
277277 const workbenchReadyDuration = perf . getDuration ( initialStartup ? 'main:started' : 'main:loadWindow' , 'didStartWorkbench' ) ;
278278 const workspaceStorageRequireDuration = perf . getDuration ( 'willRequireSQLite' , 'didRequireSQLite' ) ;
279279 const workspaceStorageSchemaDuration = perf . getDuration ( 'willSetupSQLiteSchema' , 'didSetupSQLiteSchema' ) ;
280- const globalStorageInitDuration = perf . getDuration ( 'main:willInitGlobalStorage' , 'main:didInitGlobalStorage' ) ;
280+ const globalStorageInitDurationMain = perf . getDuration ( 'main:willInitGlobalStorage' , 'main:didInitGlobalStorage' ) ;
281+ const globalStorageInitDuratioRenderer = perf . getDuration ( 'willInitGlobalStorage' , 'didInitGlobalStorage' ) ;
281282 const workspaceStorageInitDuration = perf . getDuration ( 'willInitWorkspaceStorage' , 'didInitWorkspaceStorage' ) ;
282283 const workspaceStorageFileExistsDuration = perf . getDuration ( 'willCheckWorkspaceStorageExists' , 'didCheckWorkspaceStorageExists' ) ;
283284 const workspaceStorageMigrationDuration = perf . getDuration ( 'willMigrateWorkspaceStorageKeys' , 'didMigrateWorkspaceStorageKeys' ) ;
@@ -300,7 +301,8 @@ export class WorkbenchShell extends Disposable {
300301 "workspaceMigrationTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
301302 "workspaceRequireTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
302303 "workspaceSchemaTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
303- "globalReadTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
304+ "globalReadTimeMain" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
305+ "globalReadTimeRenderer" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
304306 "workspaceReadTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
305307 "localStorageTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
306308 "workbenchRequireTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
@@ -316,7 +318,8 @@ export class WorkbenchShell extends Disposable {
316318 'workspaceMigrationTime' : workspaceStorageMigrationDuration ,
317319 'workspaceRequireTime' : workspaceStorageRequireDuration ,
318320 'workspaceSchemaTime' : workspaceStorageSchemaDuration ,
319- 'globalReadTime' : globalStorageInitDuration ,
321+ 'globalReadTimeMain' : globalStorageInitDurationMain ,
322+ 'globalReadTimeRenderer' : globalStorageInitDuratioRenderer ,
320323 'workspaceReadTime' : workspaceStorageInitDuration ,
321324 'localStorageTime' : localStorageDuration ,
322325 'workbenchRequireTime' : workbenchLoadDuration ,
@@ -344,7 +347,8 @@ export class WorkbenchShell extends Disposable {
344347 "workspaceMigrationTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
345348 "workspaceRequireTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
346349 "workspaceSchemaTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
347- "globalReadTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
350+ "globalReadTimeMain" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
351+ "globalReadTimeRenderer" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
348352 "workspaceReadTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
349353 "localStorageTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
350354 "workbenchRequireTime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
@@ -359,7 +363,8 @@ export class WorkbenchShell extends Disposable {
359363 'workspaceMigrationTime' : workspaceStorageMigrationDuration ,
360364 'workspaceRequireTime' : workspaceStorageRequireDuration ,
361365 'workspaceSchemaTime' : workspaceStorageSchemaDuration ,
362- 'globalReadTime' : globalStorageInitDuration ,
366+ 'globalReadTimeMain' : globalStorageInitDurationMain ,
367+ 'globalReadTimeRenderer' : globalStorageInitDuratioRenderer ,
363368 'workspaceReadTime' : workspaceStorageInitDuration ,
364369 'localStorageTime' : localStorageDuration ,
365370 'workbenchRequireTime' : workbenchLoadDuration ,
0 commit comments