Upload generated frame-request-pending stats (#135645)
These values are generated since https://github.com/flutter/flutter/pull/135279, but I didn't know to add the new keys to this list to get them to upload. Part of https://github.com/flutter/flutter/issues/129150
This commit is contained in:
parent
666d8f80e4
commit
dd341d4295
@ -1358,6 +1358,9 @@ const List<String> _kCommonScoreKeys = <String>[
|
|||||||
'99th_percentile_picture_cache_memory',
|
'99th_percentile_picture_cache_memory',
|
||||||
'worst_picture_cache_memory',
|
'worst_picture_cache_memory',
|
||||||
'old_gen_gc_count',
|
'old_gen_gc_count',
|
||||||
|
'average_frame_request_pending_latency',
|
||||||
|
'90th_percentile_frame_request_pending_latency',
|
||||||
|
'99th_percentile_frame_request_pending_latency'
|
||||||
];
|
];
|
||||||
|
|
||||||
/// Measures how long it takes to compile a Flutter app to JavaScript and how
|
/// Measures how long it takes to compile a Flutter app to JavaScript and how
|
||||||
|
@ -58,6 +58,9 @@ void main() {
|
|||||||
'average_vsync_transitions_missed': 1,
|
'average_vsync_transitions_missed': 1,
|
||||||
'90th_percentile_vsync_transitions_missed': 1,
|
'90th_percentile_vsync_transitions_missed': 1,
|
||||||
'99th_percentile_vsync_transitions_missed': 1,
|
'99th_percentile_vsync_transitions_missed': 1,
|
||||||
|
'average_frame_request_pending_latency': 0.1,
|
||||||
|
'90th_percentile_frame_request_pending_latency': 0.1,
|
||||||
|
'99th_percentile_frame_request_pending_latency': 0.1,
|
||||||
};
|
};
|
||||||
const String resultFileName = 'fake_result';
|
const String resultFileName = 'fake_result';
|
||||||
void driveCallback(List<String> arguments) {
|
void driveCallback(List<String> arguments) {
|
||||||
@ -108,6 +111,9 @@ void main() {
|
|||||||
'90hz_frame_percentage': 0.4,
|
'90hz_frame_percentage': 0.4,
|
||||||
'120hz_frame_percentage': 0.6,
|
'120hz_frame_percentage': 0.6,
|
||||||
'illegal_refresh_rate_frame_count': 10,
|
'illegal_refresh_rate_frame_count': 10,
|
||||||
|
'average_frame_request_pending_latency': 0.1,
|
||||||
|
'90th_percentile_frame_request_pending_latency': 0.1,
|
||||||
|
'99th_percentile_frame_request_pending_latency': 0.1,
|
||||||
};
|
};
|
||||||
const String resultFileName = 'fake_result';
|
const String resultFileName = 'fake_result';
|
||||||
void driveCallback(List<String> arguments) {
|
void driveCallback(List<String> arguments) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user