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/arcTelemetrySender.ts
+18-14Lines changed: 18 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -52,11 +52,12 @@ export class InlineEditArcTelemetrySender extends Disposable {
52
52
languageId: string;
53
53
didBranchChange: number;
54
54
timeDelayMs: number;
55
-
arc: number;
55
+
56
56
originalCharCount: number;
57
57
originalLineCount: number;
58
-
currentLineCount: number;
59
58
originalDeletedLineCount: number;
59
+
arc: number;
60
+
currentLineCount: number;
60
61
currentDeletedLineCount: number;
61
62
},{
62
63
owner: 'hediet';
@@ -69,11 +70,12 @@ export class InlineEditArcTelemetrySender extends Disposable {
69
70
70
71
didBranchChange: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'Indicates if the branch changed in the meantime. If the branch changed (value is 1); this event should probably be ignored.'};
71
72
timeDelayMs: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The time delay between the user accepting the edit and measuring the survival rate.'};
72
-
arc: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The accepted and restrained character count.'};
73
+
73
74
originalCharCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original character count before any edits.'};
74
75
originalLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original line count before any edits.'};
75
-
currentLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current line count after edits.'};
76
76
originalDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original deleted line count before any edits.'};
77
+
arc: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The accepted and restrained character count.'};
78
+
currentLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current line count after edits.'};
77
79
currentDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current deleted line count after edits.'};
78
80
}>('editTelemetry.reportInlineEditArc',{
79
81
extensionId: data.$extensionId??'',
@@ -82,11 +84,12 @@ export class InlineEditArcTelemetrySender extends Disposable {
@@ -140,12 +143,12 @@ export class ChatArcTelemetrySender extends Disposable {
140
143
141
144
didBranchChange: number;
142
145
timeDelayMs: number;
143
-
arc: number;
144
-
originalCharCount: number;
145
146
147
+
originalCharCount: number;
146
148
originalLineCount: number;
147
-
currentLineCount: number;
148
149
originalDeletedLineCount: number;
150
+
arc: number;
151
+
currentLineCount: number;
149
152
currentDeletedLineCount: number;
150
153
},{
151
154
owner: 'hediet';
@@ -164,11 +167,12 @@ export class ChatArcTelemetrySender extends Disposable {
164
167
165
168
didBranchChange: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'Indicates if the branch changed in the meantime. If the branch changed (value is 1); this event should probably be ignored.'};
166
169
timeDelayMs: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The time delay between the user accepting the edit and measuring the survival rate.'};
167
-
arc: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The accepted and restrained character count.'};
170
+
168
171
originalCharCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original character count before any edits.'};
169
172
originalLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original line count before any edits.'};
170
-
currentLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current line count after edits.'};
171
173
originalDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original deleted line count before any edits.'};
174
+
arc: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The accepted and restrained character count.'};
175
+
currentLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current line count after edits.'};
172
176
currentDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current deleted line count after edits.'};
0 commit comments