diff --git a/src/sql/platform/telemetry/telemetry.contribution.ts b/src/sql/platform/telemetry/telemetry.contribution.ts index a27a993f73..23ed4345e8 100644 --- a/src/sql/platform/telemetry/telemetry.contribution.ts +++ b/src/sql/platform/telemetry/telemetry.contribution.ts @@ -24,7 +24,7 @@ export class SqlTelemetryContribution extends Disposable implements IWorkbenchCo commandService.onWillExecuteCommand( (e: ICommandEvent) => { // Filter out high-frequency events - if (!['type'].find(id => id === e.commandId)) { + if (!['type', 'cursorUp', 'cursorDown', 'cursorRight', 'cursorLeft', 'deleteLeft', 'deleteRight'].find(id => id === e.commandId)) { telemetryService.publicLog('adsCommandExecuted', { id: e.commandId }); } }));