Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 60 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5148,6 +5148,12 @@ components:
example: 54.0
format: double
type: number
local_cache_count:
description: Number of requests served from the local browser cache without a network round trip.
example: 20
format: int32
maximum: 2147483647
type: integer
max_duration_ms:
description: Maximum duration in milliseconds.
example: 945.6
Expand All @@ -5163,6 +5169,12 @@ components:
example: 812.7
format: double
type: number
non_blocking_count:
description: Number of requests reported by the browser as non-render-blocking.
example: 23
format: int32
maximum: 2147483647
type: integer
p75_duration_ms:
description: 75th percentile duration in milliseconds.
example: 844.1
Expand All @@ -5173,6 +5185,17 @@ components:
example: 861.8
format: double
type: number
render_blocking_count:
description: Number of requests reported by the browser as render-blocking.
example: 4
format: int32
maximum: 2147483647
type: integer
render_blocking_pct:
description: Percentage of render-blocking requests among those reporting a render-blocking status.
example: 14.8
format: double
type: number
resource_type:
description: Resource type (JS, CSS, image, fetch, XHR, document, and so on).
example: fetch
Expand All @@ -5182,6 +5205,12 @@ components:
description: URL path group used to aggregate similar resources.
example: /api/gallery
type: string
server_validated_cache_count:
description: Number of cached requests revalidated by the server with a 304 response.
example: 7
format: int32
maximum: 2147483647
type: integer
timing_breakdown:
$ref: '#/components/schemas/AggregatedResourceTimingBreakdown'
total_requests:
Expand Down Expand Up @@ -5214,6 +5243,11 @@ components:
- cached_count
- downloaded_count
- cache_hit_rate_pct
- render_blocking_count
- non_blocking_count
- render_blocking_pct
- local_cache_count
- server_validated_cache_count
type: object
AggregatedResourceTimingBreakdown:
description: Average timing breakdown per network phase for a resource.
Expand Down Expand Up @@ -5680,7 +5714,7 @@ components:
example: ccbc53b1-74f2-496b-bdd7-9a8fa7b7376b
type: string
criteria:
$ref: '#/components/schemas/AggregatedWaterfallPerformanceCriteria'
$ref: '#/components/schemas/AggregatedWaterfallResponseAttributesCriteria'
from:
description: Start of the analyzed time range as a Unix timestamp in seconds.
example: 1762437564
Expand Down Expand Up @@ -5725,10 +5759,30 @@ components:
- view_count
- from
- to
- criteria
- sampled_view_ids
- total_cache_hit_rate_pct
- resources
type: object
AggregatedWaterfallResponseAttributesCriteria:
description: Performance criteria used to filter view instances by a metric threshold, or null when no criteria was applied.
nullable: true
properties:
max:
description: Maximum threshold in seconds (inclusive).
example: 5.0
format: double
type: number
metric:
$ref: '#/components/schemas/AggregatedWaterfallPerformanceCriteriaMetric'
min:
description: Minimum threshold in seconds (inclusive).
example: 2.5
format: double
type: number
required:
- metric
type: object
AggregatedWaterfallResponseData:
description: Data envelope for an aggregated waterfall response.
properties:
Expand Down Expand Up @@ -193828,13 +193882,18 @@ paths:
downloaded_count: 0
http_method: GET
load_frequency_pct: 54.0
local_cache_count: 20
max_duration_ms: 945.6
median_duration_ms: 836.2
min_duration_ms: 812.7
non_blocking_count: 23
p75_duration_ms: 844.1
p95_duration_ms: 861.8
render_blocking_count: 4
render_blocking_pct: 14.8
resource_type: fetch
resource_url_path_group: /api/gallery
server_validated_cache_count: 7
timing_breakdown:
avg_connect_ms: 0.0
avg_dns_ms: 0.0
Expand Down
Loading
Loading