pub struct Values {Show 64 fields
pub edge_requests: Option<i64>,
pub edge_resp_header_bytes: Option<i64>,
pub edge_resp_body_bytes: Option<i64>,
pub status_1xx: Option<i64>,
pub status_2xx: Option<i64>,
pub status_3xx: Option<i64>,
pub status_4xx: Option<i64>,
pub status_5xx: Option<i64>,
pub status_200: Option<i64>,
pub status_204: Option<i64>,
pub status_206: Option<i64>,
pub status_301: Option<i64>,
pub status_302: Option<i64>,
pub status_304: Option<i64>,
pub status_400: Option<i64>,
pub status_401: Option<i64>,
pub status_403: Option<i64>,
pub status_404: Option<i64>,
pub status_416: Option<i64>,
pub status_429: Option<i64>,
pub status_500: Option<i64>,
pub status_501: Option<i64>,
pub status_502: Option<i64>,
pub status_503: Option<i64>,
pub status_504: Option<i64>,
pub status_505: Option<i64>,
pub status_530: Option<i64>,
pub requests: Option<i64>,
pub resp_header_bytes: Option<i64>,
pub resp_body_bytes: Option<i64>,
pub bereq_header_bytes: Option<i64>,
pub bereq_body_bytes: Option<i64>,
pub edge_hit_requests: Option<i64>,
pub edge_miss_requests: Option<i64>,
pub origin_fetches: Option<i64>,
pub origin_fetch_resp_header_bytes: Option<i64>,
pub origin_fetch_resp_body_bytes: Option<i64>,
pub bandwidth: Option<i64>,
pub edge_hit_ratio: Option<f32>,
pub origin_offload: Option<f32>,
pub origin_status_200: Option<i64>,
pub origin_status_204: Option<i64>,
pub origin_status_206: Option<i64>,
pub origin_status_301: Option<i64>,
pub origin_status_302: Option<i64>,
pub origin_status_304: Option<i64>,
pub origin_status_400: Option<i64>,
pub origin_status_401: Option<i64>,
pub origin_status_403: Option<i64>,
pub origin_status_404: Option<i64>,
pub origin_status_416: Option<i64>,
pub origin_status_429: Option<i64>,
pub origin_status_500: Option<i64>,
pub origin_status_501: Option<i64>,
pub origin_status_502: Option<i64>,
pub origin_status_503: Option<i64>,
pub origin_status_504: Option<i64>,
pub origin_status_505: Option<i64>,
pub origin_status_530: Option<i64>,
pub origin_status_1xx: Option<i64>,
pub origin_status_2xx: Option<i64>,
pub origin_status_3xx: Option<i64>,
pub origin_status_4xx: Option<i64>,
pub origin_status_5xx: Option<i64>,
}
Expand description
Values : The results of the query, optionally filtered and grouped over the requested timespan.
Fields§
§edge_requests: Option<i64>
Number of requests sent by end users to Fastly.
edge_resp_header_bytes: Option<i64>
Total header bytes delivered from Fastly to the end user.
edge_resp_body_bytes: Option<i64>
Total body bytes delivered from Fastly to the end user.
status_1xx: Option<i64>
Number of 1xx "Informational" category status codes delivered.
status_2xx: Option<i64>
Number of 2xx "Success" status codes delivered.
status_3xx: Option<i64>
Number of 3xx "Redirection" codes delivered.
status_4xx: Option<i64>
Number of 4xx "Client Error" codes delivered.
status_5xx: Option<i64>
Number of 5xx "Server Error" codes delivered.
status_200: Option<i64>
Number of responses delivered with status code 200 (Success).
status_204: Option<i64>
Number of responses delivered with status code 204 (No Content).
status_206: Option<i64>
Number of responses delivered with status code 206 (Partial Content).
status_301: Option<i64>
Number of responses delivered with status code 301 (Moved Permanently).
status_302: Option<i64>
Number of responses delivered with status code 302 (Found).
status_304: Option<i64>
Number of responses delivered with status code 304 (Not Modified).
status_400: Option<i64>
Number of responses delivered with status code 400 (Bad Request).
status_401: Option<i64>
Number of responses delivered with status code 401 (Unauthorized).
status_403: Option<i64>
Number of responses delivered with status code 403 (Forbidden).
status_404: Option<i64>
Number of responses delivered with status code 404 (Not Found).
status_416: Option<i64>
Number of responses delivered with status code 416 (Range Not Satisfiable).
status_429: Option<i64>
Number of responses delivered with status code 429 (Too Many Requests).
status_500: Option<i64>
Number of responses delivered with status code 500 (Internal Server Error).
status_501: Option<i64>
Number of responses delivered with status code 501 (Not Implemented).
status_502: Option<i64>
Number of responses delivered with status code 502 (Bad Gateway).
status_503: Option<i64>
Number of responses delivered with status code 503 (Service Unavailable).
status_504: Option<i64>
Number of responses delivered with status code 504 (Gateway Timeout).
status_505: Option<i64>
Number of responses delivered with status code 505 (HTTP Version Not Supported).
status_530: Option<i64>
Number of responses delivered with status code 530.
requests: Option<i64>
Number of requests processed.
resp_header_bytes: Option<i64>
Total header bytes delivered.
resp_body_bytes: Option<i64>
Total body bytes delivered.
bereq_header_bytes: Option<i64>
Total header bytes sent to origin.
bereq_body_bytes: Option<i64>
Total body bytes sent to origin.
edge_hit_requests: Option<i64>
Number of requests sent by end users to Fastly that resulted in a hit at the edge.
edge_miss_requests: Option<i64>
Number of requests sent by end users to Fastly that resulted in a miss at the edge.
origin_fetches: Option<i64>
Number of requests sent to origin.
origin_fetch_resp_header_bytes: Option<i64>
Total header bytes received from origin.
origin_fetch_resp_body_bytes: Option<i64>
Total body bytes received from origin.
bandwidth: Option<i64>
Total bytes delivered (resp_header_bytes
+ resp_body_bytes
+ bereq_header_bytes
+ bereq_body_bytes
).
edge_hit_ratio: Option<f32>
Ratio of cache hits to cache misses at the edge, between 0 and 1 (edge_hit_requests
/ (edge_hit_requests
+ edge_miss_requests
)).
origin_offload: Option<f32>
Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((edge_resp_body_bytes
+ edge_resp_header_bytes
) - (origin_fetch_resp_body_bytes
+ origin_fetch_resp_header_bytes
)) / (edge_resp_body_bytes
+ edge_resp_header_bytes
). Previously, Origin Offload used a different formula. Learn more.
origin_status_200: Option<i64>
Number of responses received from origin with status code 200 (Success).
origin_status_204: Option<i64>
Number of responses received from origin with status code 204 (No Content).
origin_status_206: Option<i64>
Number of responses received from origin with status code 206 (Partial Content).
origin_status_301: Option<i64>
Number of responses received from origin with status code 301 (Moved Permanently).
origin_status_302: Option<i64>
Number of responses received from origin with status code 302 (Found).
origin_status_304: Option<i64>
Number of responses received from origin with status code 304 (Not Modified).
origin_status_400: Option<i64>
Number of responses received from origin with status code 400 (Bad Request).
origin_status_401: Option<i64>
Number of responses received from origin with status code 401 (Unauthorized).
origin_status_403: Option<i64>
Number of responses received from origin with status code 403 (Forbidden).
origin_status_404: Option<i64>
Number of responses received from origin with status code 404 (Not Found).
origin_status_416: Option<i64>
Number of responses received from origin with status code 416 (Range Not Satisfiable).
origin_status_429: Option<i64>
Number of responses received from origin with status code 429 (Too Many Requests).
origin_status_500: Option<i64>
Number of responses received from origin with status code 500 (Internal Server Error).
origin_status_501: Option<i64>
Number of responses received from origin with status code 501 (Not Implemented).
origin_status_502: Option<i64>
Number of responses received from origin with status code 502 (Bad Gateway).
origin_status_503: Option<i64>
Number of responses received from origin with status code 503 (Service Unavailable).
origin_status_504: Option<i64>
Number of responses received from origin with status code 504 (Gateway Timeout).
origin_status_505: Option<i64>
Number of responses received from origin with status code 505 (HTTP Version Not Supported).
origin_status_530: Option<i64>
Number of responses received from origin with status code 530.
origin_status_1xx: Option<i64>
Number of "Informational" category status codes received from origin.
origin_status_2xx: Option<i64>
Number of "Success" status codes received from origin.
origin_status_3xx: Option<i64>
Number of "Redirection" codes received from origin.
origin_status_4xx: Option<i64>
Number of "Client Error" codes received from origin.
origin_status_5xx: Option<i64>
Number of "Server Error" codes received from origin.