@@ -195,27 +195,27 @@ const configurationValueWhitelist = [
195195export function configurationTelemetry ( telemetryService : ITelemetryService , configurationService : IConfigurationService ) : IDisposable {
196196 return configurationService . onDidChangeConfiguration ( event => {
197197 if ( event . source !== ConfigurationTarget . DEFAULT ) {
198- type UpdateConfigClassification = {
198+ type UpdateConfigurationClassification = {
199199 configurationSource : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' } ;
200200 configurationKeys : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' } ;
201201 } ;
202- type UpdateConfigEvent = {
202+ type UpdateConfigurationEvent = {
203203 configurationSource : string ;
204204 configurationKeys : string [ ] ;
205205 } ;
206- telemetryService . publicLog2 < UpdateConfigEvent , UpdateConfigClassification > ( 'updateConfiguration' , {
206+ telemetryService . publicLog2 < UpdateConfigurationEvent , UpdateConfigurationClassification > ( 'updateConfiguration' , {
207207 configurationSource : ConfigurationTargetToString ( event . source ) ,
208208 configurationKeys : flattenKeys ( event . sourceConfig )
209209 } ) ;
210- type UpdateConfigValClassification = {
210+ type UpdateConfigurationValuesClassification = {
211211 configurationSource : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' } ;
212212 configurationValues : { classification : 'CustomerContent' , purpose : 'FeatureInsight' } ;
213213 } ;
214- type UpdateConfigValEvent = {
214+ type UpdateConfigurationValuesEvent = {
215215 configurationSource : string ;
216216 configurationValues : { [ key : string ] : any } [ ] ;
217217 } ;
218- telemetryService . publicLog2 < UpdateConfigValEvent , UpdateConfigValClassification > ( 'updateConfigurationValues' , {
218+ telemetryService . publicLog2 < UpdateConfigurationValuesEvent , UpdateConfigurationValuesClassification > ( 'updateConfigurationValues' , {
219219 configurationSource : ConfigurationTargetToString ( event . source ) ,
220220 configurationValues : flattenValues ( event . sourceConfig , configurationValueWhitelist )
221221 } ) ;
@@ -226,13 +226,13 @@ export function configurationTelemetry(telemetryService: ITelemetryService, conf
226226export function keybindingsTelemetry ( telemetryService : ITelemetryService , keybindingService : IKeybindingService ) : IDisposable {
227227 return keybindingService . onDidUpdateKeybindings ( event => {
228228 if ( event . source === KeybindingSource . User && event . keybindings ) {
229- type UpdateKBClassification = {
229+ type UpdateKeybindingsClassification = {
230230 bindings : { classification : 'CustomerContent' , purpose : 'FeatureInsight' } ;
231231 } ;
232- type UpdateKBEvents = {
232+ type UpdateKeybindingsEvents = {
233233 bindings : { key : string , command : string , when : string | undefined , args : boolean | undefined } [ ] ;
234234 } ;
235- telemetryService . publicLog2 < UpdateKBEvents , UpdateKBClassification > ( 'updateKeybindings' , {
235+ telemetryService . publicLog2 < UpdateKeybindingsEvents , UpdateKeybindingsClassification > ( 'updateKeybindings' , {
236236 bindings : event . keybindings . map ( binding => ( {
237237 key : binding . key ,
238238 command : binding . command ,
0 commit comments