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
comment: 'Represents a set of statistics collected about input latencies';
49
+
average: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The average time it took to execute.';isMeasurement: true};
50
+
max: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The maximum time it took to execute.';isMeasurement: true};
51
+
min: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The minimum time it took to execute.';isMeasurement: true};
52
+
};
53
+
46
54
typePerformanceInputLatencyClassification={
47
55
owner: 'tyriar';
48
56
comment: 'This is a set of samples of the time (in milliseconds) that various events took when typing in the editor';
49
-
'keydown.average': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The min time it took for the keydown event to execute.'};
50
-
'keydown.max': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The max time it took for the keydown event to execute.'};
51
-
'keydown.min': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The average time it took for the keydown event to execute.'};
52
-
'input.average': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The min time it took for the input event to execute.'};
53
-
'input.max': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The max time it took for the input event to execute.'};
54
-
'input.min': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The average time it took for the input event to execute.'};
55
-
'render.average': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The min time it took for the render animation frame to execute.'};
56
-
'render.max': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The max time it took for the render animation frame to execute.'};
57
-
'render.min': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The average time it took for the render animation frame to execute.'};
58
-
'total.average': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The min input latency.'};
59
-
'total.max': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The max input latency.'};
60
-
'total.min': {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The average input latency.'};
57
+
keydown: InputLatencyStatisticFragment;
58
+
input: InputLatencyStatisticFragment;
59
+
render: InputLatencyStatisticFragment;
60
+
total: InputLatencyStatisticFragment;
61
61
sampleCount: {classification: 'SystemMetaData';purpose: 'PerformanceAndHealth';comment: 'The number of samples measured.'};
0 commit comments