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
@@ -399,6 +400,13 @@ export class NotebookEditor extends EditorPane implements INotebookEditorPane, I
399
400
webviewCommLoaded: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Webview initialization time for the resource opening'};
400
401
customMarkdownLoaded: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Custom markdown loading time for the resource opening'};
401
402
editorLoaded: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Overall editor loading time for the resource opening'};
403
+
codeCellCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Total number of code cell'};
404
+
mdCellCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Total number of markdown cell'};
405
+
outputCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Total number of cell outputs'};
406
+
outputBytes: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Total number of bytes for all outputs'};
407
+
codeLength: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Length of text in all code cells'};
408
+
markdownLength: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Length of text in all markdown cells'};
409
+
notebookStatsLoaded: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Time for generating the notebook level information for telemetry'};
402
410
};
403
411
404
412
typeWorkbenchNotebookOpenEvent={
@@ -410,6 +418,13 @@ export class NotebookEditor extends EditorPane implements INotebookEditorPane, I
410
418
webviewCommLoaded: number;
411
419
customMarkdownLoaded: number|undefined;
412
420
editorLoaded: number;
421
+
codeCellCount: number|undefined;
422
+
mdCellCount: number|undefined;
423
+
outputCount: number|undefined;
424
+
outputBytes: number|undefined;
425
+
codeLength: number|undefined;
426
+
markdownLength: number|undefined;
427
+
notebookStatsLoaded: number|undefined;
413
428
};
414
429
415
430
conststartTime=perfMarks['startTime'];
@@ -441,6 +456,30 @@ export class NotebookEditor extends EditorPane implements INotebookEditorPane, I
0 commit comments