mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Filter vscode delegate command events (#13832)
This commit is contained in:
@@ -33,7 +33,8 @@ export class SqlTelemetryContribution extends Disposable implements IWorkbenchCo
|
|||||||
'tab',
|
'tab',
|
||||||
'selectNextSuggestion'].some(id => id === e.commandId) &&
|
'selectNextSuggestion'].some(id => id === e.commandId) &&
|
||||||
// Events from src\vs\editor\contrib\wordOperations\wordOperations.ts
|
// Events from src\vs\editor\contrib\wordOperations\wordOperations.ts
|
||||||
!e.commandId.startsWith('cursor')) {
|
!e.commandId.startsWith('cursor') &&
|
||||||
|
!e.commandId.startsWith('_vscode_delegate')) {
|
||||||
telemetryService.sendActionEvent(TelemetryView.Shell, 'adsCommandExecuted', e.commandId);
|
telemetryService.sendActionEvent(TelemetryView.Shell, 'adsCommandExecuted', e.commandId);
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|||||||
Reference in New Issue
Block a user