chrome_page_load_resource_summary
Summarizes URL-level Chrome resource requests for page-load windows, returning max overlap and attribution evidence. Use before resource hotspots for slow FCP or load events.
Instructions
URL-level Chrome resource/request summary for a page-load/raw window. Returns URL key, slice/process/priority sets, first/last/span, max_overlap_ms, summed_overlap_ms, pct_of_window, example_slice_id, and attribution evidence. Use before chrome_page_load_resource_hotspots for slow FCP/load; rank by max overlap because summed overlap can double-count layered slices.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_ts_ns | No | Optional raw trace timestamp upper bound in nanoseconds, exclusive. ANDs with any page-load window. | |
| limit | No | Optional max rows to return. Defaults to 100 and is capped at 5000. Must be > 0 when set. | |
| max_string_len | No | Optional per-string-cell character cap applied to returned rows only. Unset preserves full strings for precision; accepts both numbers and numeric strings. Must be > 0 when set. | |
| min_overlap_ms | No | Optional minimum per-URL max overlap in milliseconds. Defaults to 50 ms. | |
| navigation_id | No | Optional Chrome navigation id used to scope resources to one navigation phase. Matches `chrome_page_loads.navigation_id`. Mutually exclusive with `page_load_id`. If set without `phase`, defaults to `navigation_to_fcp`. | |
| page_load_id | No | Optional page-load id used to scope resources to one navigation phase. Matches `chrome_page_loads.id`. Mutually exclusive with `navigation_id`. If set without `phase`, defaults to `navigation_to_fcp`. | |
| phase | No | Optional page-load phase window. If set without `page_load_id` or `navigation_id`, uses the latest page load in the trace. Values: navigation_to_fcp, navigation_to_load, dcl_to_fcp, fcp_to_load. | |
| start_ts_ns | No | Optional raw trace timestamp lower bound in nanoseconds. ANDs with any page-load window. | |
| url_grouping | No | URL grouping strategy. Defaults to full URL; use without_query to merge signed/nonce query variants of the same endpoint. |