Skip to content

Commit

Permalink
Revert "startup metrics should know if a window talks to a remote"
Browse files Browse the repository at this point in the history
This reverts commit 2e61cfb.
  • Loading branch information
jrieken committed May 29, 2019
1 parent b60faaa commit 4c5705f
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export interface IMemoryInfo {
"version" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"ellapsed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "isMeasurement": true },
"isLatestVersion": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"isRemoteWindow": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"didUseCachedData": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"windowKind": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"windowCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
Expand Down Expand Up @@ -100,11 +99,6 @@ export interface IStartupMetrics {
*/
readonly isLatestVersion: boolean;

/**
* Whether this window talks to a remote endpoint.
*/
readonly isRemoteWindow: boolean;

/**
* Whether we asked for and V8 accepted cached data.
*/
Expand Down Expand Up @@ -381,7 +375,6 @@ class TimerService implements ITimerService {

// reflections
isLatestVersion: Boolean(await this._updateService.isLatestVersion()),
isRemoteWindow: Boolean(this._environmentService.configuration.remoteAuthority),
didUseCachedData: didUseCachedData(),
windowKind: this._lifecycleService.startupKind,
windowCount: await this._windowsService.getWindowCount(),
Expand Down

0 comments on commit 4c5705f

Please sign in to comment.