Skip to content

Commit ec5b341

Browse files
authored
fix missing gdpr (#7516)
1 parent ee3ff94 commit ec5b341

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/github/copilotRemoteAgent.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,14 @@ export class CopilotRemoteAgentManager extends Disposable {
404404

405405
const { webviewUri, link, number } = result;
406406

407-
this.telemetry.sendTelemetryEvent('remoteAgent.command', {
407+
/* __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', {
408415
source: source || 'unknown',
409416
hasFollowup: (!!followup).toString(),
410417
outcome: 'success'

0 commit comments

Comments
 (0)