0

[fuchsia] Missing the "video_perf" in the names of video perf metrics

The prefix of "video_perf" was designed to filter out the video
playback related performance metrics, but I accidentally missed
it in the `record` function.

Bug: 40935291
Change-Id: I1a0b7cba5d13437d1407320f54bd648f20196d16
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6235812
Commit-Queue: Zijie He <zijiehe@google.com>
Reviewed-by: David Song <wintermelons@google.com>
Auto-Submit: Zijie He <zijiehe@google.com>
Cr-Commit-Position: refs/heads/main@{#1416314}
This commit is contained in:
Zijie He
2025-02-05 10:52:44 -08:00
committed by Chromium LUCI CQ
parent 4869ebcc17
commit b7b758b1a0

@ -165,7 +165,7 @@ def run_video_perf_test(file: str, driver: ChromeDriverWrapper,
# error and use the default value to filter them out instead of failing
# the tests.
# TODO(crbug.com/40935291): Revise the default value for errors.
monitors.average(file, key).record(results.get(key, -128))
monitors.average(file, 'video_perf', key).record(results.get(key, -128))
record('smoothness')
record('freezing')