File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ export enum EventName {
99
99
100
100
LINTER_NOT_INSTALLED_PROMPT = 'LINTER_NOT_INSTALLED_PROMPT' ,
101
101
HASHED_PACKAGE_NAME = 'HASHED_PACKAGE_NAME' ,
102
- HASHED_PACKAGE_PERF = 'HASHED_PACKAGE_PERF' ,
103
102
104
103
JEDI_LANGUAGE_SERVER_ENABLED = 'JEDI_LANGUAGE_SERVER.ENABLED' ,
105
104
JEDI_LANGUAGE_SERVER_STARTUP = 'JEDI_LANGUAGE_SERVER.STARTUP' ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { inject, injectable } from 'inversify';
7
7
import * as path from 'path' ;
8
8
import { clearTimeout , setTimeout } from 'timers' ;
9
9
import { TextDocument } from 'vscode' ;
10
- import { captureTelemetry , sendTelemetryEvent } from '.' ;
10
+ import { sendTelemetryEvent } from '.' ;
11
11
import { IExtensionSingleActivationService } from '../activation/types' ;
12
12
import { IDocumentManager } from '../common/application/types' ;
13
13
import { isTestExecution } from '../common/constants' ;
@@ -106,7 +106,6 @@ export class ImportTracker implements IExtensionSingleActivationService {
106
106
}
107
107
}
108
108
109
- @captureTelemetry ( EventName . HASHED_PACKAGE_PERF )
110
109
private checkDocument ( document : TextDocument ) {
111
110
this . pendingChecks . delete ( document . fileName ) ;
112
111
const lines = getDocumentLines ( document ) ;
Original file line number Diff line number Diff line change @@ -905,6 +905,7 @@ export interface IEventNamePropertyMapping {
905
905
}
906
906
*/
907
907
[ EventName . FORMAT_SORT_IMPORTS ] : never | undefined ;
908
+
908
909
/**
909
910
* Telemetry event sent with details when tracking imports
910
911
*/
@@ -922,12 +923,7 @@ export interface IEventNamePropertyMapping {
922
923
*/
923
924
hashedName : string ;
924
925
} ;
925
- /* __GDPR__
926
- "hashed_package_perf" : {
927
- "propertyName" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "luabud" }
928
- }
929
- */
930
- [ EventName . HASHED_PACKAGE_PERF ] : never | undefined ;
926
+
931
927
/**
932
928
* Telemetry event sent with details of selection in prompt
933
929
* `Prompt message` :- 'Linter ${productName} is not installed'
You can’t perform that action at this time.
0 commit comments