diff --git a/scripts/dev/aggregate-latency-estimates.py b/scripts/dev/aggregate-latency-estimates.py index 3884c6b..e490d3c 100644 --- a/scripts/dev/aggregate-latency-estimates.py +++ b/scripts/dev/aggregate-latency-estimates.py @@ -188,6 +188,13 @@ def aggregate_video_estimates( "video_network_oneway_est_ms": network_oneway, "b_side_capture_to_send_ms": capture_to_send, "request_to_paint_ms": request_to_paint_ms, + "response_to_paint_ms": probe.get("response_to_paint_ms") if probe is not None else None, + "backend_to_request_ms": probe.get("backend_to_request_ms") if probe is not None else None, + "backend_to_request_ms_raw": probe.get("backend_to_request_ms_raw") if probe is not None else None, + "backend_to_paint_ms": probe.get("backend_to_paint_ms") if probe is not None else None, + "backend_to_paint_ms_raw": probe.get("backend_to_paint_ms_raw") if probe is not None else None, + "browser_backend_clock_offset_ms": probe.get("browser_backend_clock_offset_ms") if probe is not None else None, + "browser_backend_clock_rtt_ms": probe.get("browser_backend_clock_rtt_ms") if probe is not None else None, "video_partial_est_ms": partial_est, "video_e2e_est_ms": video_e2e_est_ms, "sequence_gap": record.get("sequence_gap"),