Amazon X-Ray · JSON Structure

Xray Error Statistics Structure

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

Type: object Properties: 3
Application PerformanceDebuggingDistributed TracingMonitoringObservability

ErrorStatistics is a JSON Structure definition published by Amazon X-Ray, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ThrottleCount OtherCount TotalCount

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "name": "ErrorStatistics",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-error-statistics-structure.json"
}