We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1900b76 + 2fb0926 commit 06dee00Copy full SHA for 06dee00
packages/core/src/lambda/remoteDebugging/ldkController.ts
@@ -729,7 +729,8 @@ export class RemoteDebugController {
729
)
730
return
731
}
732
- span.record({ duration: this.lastDebugStartTime === 0 ? 0 : Date.now() - this.lastDebugStartTime })
+ // use sessionDuration to record debug duration
733
+ span.record({ sessionDuration: this.lastDebugStartTime === 0 ? 0 : Date.now() - this.lastDebugStartTime })
734
try {
735
await vscode.window.withProgress(
736
{
0 commit comments