Amazon X-Ray · JSON Structure

Xray Telemetry Record Structure

Type: object Properties: 6 Required: 1
Application PerformanceDebuggingDistributed TracingMonitoringObservability

TelemetryRecord is a JSON Structure definition published by Amazon X-Ray, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Timestamp SegmentsReceivedCount SegmentsSentCount SegmentsSpilloverCount SegmentsRejectedCount BackendConnectionErrors

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "Timestamp"
  ],
  "properties": {
    "Timestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "<p/>"
        }
      ]
    },
    "SegmentsReceivedCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableInteger"
        },
        {
          "description": "<p/>"
        }
      ]
    },
    "SegmentsSentCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableInteger"
        },
        {
          "description": "<p/>"
        }
      ]
    },
    "SegmentsSpilloverCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableInteger"
        },
        {
          "description": "<p/>"
        }
      ]
    },
    "SegmentsRejectedCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableInteger"
        },
        {
          "description": "<p/>"
        }
      ]
    },
    "BackendConnectionErrors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BackendConnectionErrors"
        },
        {
          "description": "<p/>"
        }
      ]
    }
  },
  "description": "<p/>",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "TelemetryRecord",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-telemetry-record-structure.json"
}