Amazon X-Ray · Schema

ErrorStatistics

Information about requests that failed with a 4xx Client Error status code.

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

Name Type Description
ThrottleCount object
OtherCount object
TotalCount object
View JSON Schema on GitHub

JSON Schema

xray-error-statistics-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "ThrottleCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The number of requests that failed with a 419 throttling status code."
        }
      ]
    },
    "OtherCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The number of requests that failed with untracked 4xx Client Error status codes."
        }
      ]
    },
    "TotalCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The total number of requests that failed with a 4xx Client Error status code."
        }
      ]
    }
  },
  "description": "Information about requests that failed with a 4xx Client Error status code.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorStatistics",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-error-statistics-schema.json"
}