Fastly · Schema

RealtimeRecord

A single second of real-time analytics data with measurements grouped by data center.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
datacenter object A map of data center names to their respective measurement data.
aggregated object
recorded integer The Unix timestamp when this record was recorded.
View JSON Schema on GitHub

JSON Schema

fastly-realtimerecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RealtimeRecord",
  "title": "RealtimeRecord",
  "type": "object",
  "description": "A single second of real-time analytics data with measurements grouped by data center.",
  "properties": {
    "datacenter": {
      "type": "object",
      "description": "A map of data center names to their respective measurement data.",
      "additionalProperties": {
        "$ref": "#/components/schemas/RealtimeMeasurements"
      }
    },
    "aggregated": {
      "$ref": "#/components/schemas/RealtimeMeasurements"
    },
    "recorded": {
      "type": "integer",
      "description": "The Unix timestamp when this record was recorded."
    }
  }
}