Fastly · Schema

RealtimeMeasurements

A set of measurements for a specific time period and data center or aggregated across all data centers.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
requests integer The total number of requests received.
hits integer The number of cache hits.
miss integer The number of cache misses.
pass integer The number of requests that passed through to origin.
errors integer The total number of errors.
bandwidth integer The total bandwidth in bytes.
header_size integer The total header size in bytes.
body_size integer The total body size in bytes.
status_1xx integer The number of responses with 1xx status codes.
status_2xx integer The number of responses with 2xx status codes.
status_3xx integer The number of responses with 3xx status codes.
status_4xx integer The number of responses with 4xx status codes.
status_5xx integer The number of responses with 5xx status codes.
hit_ratio number The ratio of cache hits to total requests.
View JSON Schema on GitHub

JSON Schema

fastly-realtimemeasurements-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RealtimeMeasurements",
  "title": "RealtimeMeasurements",
  "type": "object",
  "description": "A set of measurements for a specific time period and data center or aggregated across all data centers.",
  "properties": {
    "requests": {
      "type": "integer",
      "description": "The total number of requests received."
    },
    "hits": {
      "type": "integer",
      "description": "The number of cache hits."
    },
    "miss": {
      "type": "integer",
      "description": "The number of cache misses."
    },
    "pass": {
      "type": "integer",
      "description": "The number of requests that passed through to origin."
    },
    "errors": {
      "type": "integer",
      "description": "The total number of errors."
    },
    "bandwidth": {
      "type": "integer",
      "description": "The total bandwidth in bytes."
    },
    "header_size": {
      "type": "integer",
      "description": "The total header size in bytes."
    },
    "body_size": {
      "type": "integer",
      "description": "The total body size in bytes."
    },
    "status_1xx": {
      "type": "integer",
      "description": "The number of responses with 1xx status codes."
    },
    "status_2xx": {
      "type": "integer",
      "description": "The number of responses with 2xx status codes."
    },
    "status_3xx": {
      "type": "integer",
      "description": "The number of responses with 3xx status codes."
    },
    "status_4xx": {
      "type": "integer",
      "description": "The number of responses with 4xx status codes."
    },
    "status_5xx": {
      "type": "integer",
      "description": "The number of responses with 5xx status codes."
    },
    "hit_ratio": {
      "type": "number",
      "format": "float",
      "description": "The ratio of cache hits to total requests."
    }
  }
}