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
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/editTelemetry/browser/telemetry/editSourceTrackingImpl.ts
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -178,24 +178,24 @@ class TrackedDocumentInfo extends Disposable {
178
178
totalModifiedCount: number;
179
179
},{
180
180
owner: 'hediet';
181
-
comment: 'Reports distribution of various edit kinds.';
181
+
comment: 'Reports distribution of various edit sources per session.';
182
182
183
-
mode: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'longterm or 5minWindow'};
184
-
sourceKey: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The source of the edit.'};
183
+
mode: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'Describes the session mode. Is either longterm or 5minWindow.'};
184
+
sourceKey: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'A description of the source of the edit.'};
185
185
186
-
sourceKeyCleaned: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The source of the edit.'};
187
-
extensionId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The extension id which provided this inline completion.'};
186
+
sourceKeyCleaned: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The source of the edit with some properties (such as extensionId, extensionVersion and modelId) removed.'};
187
+
extensionId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The extension id.'};
188
188
extensionVersion: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The version of the extension.'};
189
-
modelId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The model id.'};
189
+
modelId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The LLM id.'};
190
190
191
191
languageId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The language id of the document.'};
192
-
statsUuid: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The unique identifier for the telemetry event.'};
192
+
statsUuid: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The unique identifier of the session for which stats are reported. The sourceKey is unique in this session.'};
193
193
194
-
trigger: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The trigger for the telemetry event.'};
194
+
trigger: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Indicates why the session ended.'};
195
195
196
-
modifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'Fraction of nes modified characters';isMeasurement: true};
197
-
deltaModifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'Delta of modified characters';isMeasurement: true};
198
-
totalModifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'Total number of characters';isMeasurement: true};
196
+
modifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The number of characters inserted by the given edit source during the session that are still in the text document at the end of the session.';isMeasurement: true};
197
+
deltaModifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The number of characters inserted by the given edit source during the session.';isMeasurement: true};
198
+
totalModifiedCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The number of characters inserted by any edit source during the session that are still in the text document at the end of the session.';isMeasurement: true};
0 commit comments