diff --git a/lib/perf_hooks.js b/lib/perf_hooks.js index 12909b047ce20b..18b0332feaffaa 100644 --- a/lib/perf_hooks.js +++ b/lib/perf_hooks.js @@ -205,15 +205,7 @@ class PerformanceNodeTiming extends PerformanceEntry { bootstrapComplete: this.bootstrapComplete, environment: this.environment, loopStart: this.loopStart, - loopExit: this.loopExit, - thirdPartyMainStart: this.thirdPartyMainStart, - thirdPartyMainEnd: this.thirdPartyMainEnd, - clusterSetupStart: this.clusterSetupStart, - clusterSetupEnd: this.clusterSetupEnd, - moduleLoadStart: this.moduleLoadStart, - moduleLoadEnd: this.moduleLoadEnd, - preloadModuleLoadStart: this.preloadModuleLoadStart, - preloadModuleLoadEnd: this.preloadModuleLoadEnd + loopExit: this.loopExit }; } } diff --git a/test/parallel/test-trace-events-bootstrap.js b/test/parallel/test-trace-events-bootstrap.js index 087fbd2f182a61..7251a9824dc951 100644 --- a/test/parallel/test-trace-events-bootstrap.js +++ b/test/parallel/test-trace-events-bootstrap.js @@ -12,15 +12,7 @@ const names = [ 'v8Start', 'loopStart', 'loopExit', - 'bootstrapComplete', - 'thirdPartyMainStart', - 'thirdPartyMainEnd', - 'clusterSetupStart', - 'clusterSetupEnd', - 'moduleLoadStart', - 'moduleLoadEnd', - 'preloadModulesLoadStart', - 'preloadModulesLoadEnd' + 'bootstrapComplete' ]; if (process.argv[2] === 'child') {