You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tweak resolve info so that we know if resolve was needed and if it already finished, also make telemetry gate more fair (microsoft#185327)
* tweak resolve info so that we know if resolve was needed and if it already finished, also make telemetry gate more fair
* also log the resolve duration
@@ -504,18 +508,18 @@ export class SuggestController implements IEditorContribution {
504
508
fileExtension: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'File extension of the file into which the completion was inserted'};
505
509
languageId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Language type of the file into which the completion was inserted'};
506
510
kind: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The completion item kind'};
507
-
itemResolved: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'If the item was inserted before resolving was done'};
511
+
resolveInfo: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'If the item was inserted before resolving was done'};
512
+
resolveDuration: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'How long resolving took to finish'};
508
513
};
509
-
// _debugDisplayName looks like `vscode.css-language-features(/-:)`, where the last bit is the trigger chars
510
-
// normalize it to just the extension ID and lowercase
0 commit comments