-
Notifications
You must be signed in to change notification settings - Fork 552
Closed
Labels
Milestone
Description
(Self explanatory)
Here's the data from a webpacked activation:
{
"messages": [],
"activationTimes": {
"codeLoadingTime": 1537,
"activateCallTime": 14,
"activateResolvedTime": 3152,
"activationReason": {
"startup": false,
"extensionId": {
"value": "ms-azuretools.vscode-docker",
"_lower": "ms-azuretools.vscode-docker"
},
"activationEvent": "onView:dockerContainers"
}
},
"runtimeErrors": []
}From not-webpacked activation:
{
"messages": [],
"activationTimes": {
"codeLoadingTime": 9422,
"activateCallTime": 5,
"activateResolvedTime": 3082,
"activationReason": {
"startup": false,
"extensionId": {
"value": "ms-azuretools.vscode-docker",
"_lower": "ms-azuretools.vscode-docker"
},
"activationEvent": "onView:dockerContainers"
}
},
"runtimeErrors": []
}So our actual activation takes ~3 seconds, and code loading from ~1.5 seconds (webpacked) to 9.5 seconds (not webpacked).
Reactions are currently unavailable