We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee3ff94 commit ec5b341Copy full SHA for ec5b341
1 file changed
src/github/copilotRemoteAgent.ts
@@ -404,7 +404,14 @@ export class CopilotRemoteAgentManager extends Disposable {
404
405
const { webviewUri, link, number } = result;
406
407
- this.telemetry.sendTelemetryEvent('remoteAgent.command', {
+ /* __GDPR__
408
+ "remoteAgent.command.success" : {
409
+ "source" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
410
+ "hasFollowup" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
411
+ "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
412
+ }
413
+ */
414
+ this.telemetry.sendTelemetryEvent('remoteAgent.command.success', {
415
source: source || 'unknown',
416
hasFollowup: (!!followup).toString(),
417
outcome: 'success'
0 commit comments