Amazon X-Ray · JSON Structure

Xray Fault Statistics Structure

Information about requests that failed with a 5xx Server Error status code.

Type: object Properties: 2
Application PerformanceDebuggingDistributed TracingMonitoringObservability

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

Properties

OtherCount TotalCount

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "OtherCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The number of requests that failed with untracked 5xx Server Error status codes."
        }
      ]
    },
    "TotalCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The total number of requests that failed with a 5xx Server Error status code."
        }
      ]
    }
  },
  "description": "Information about requests that failed with a 5xx Server Error status code.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "FaultStatistics",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-fault-statistics-structure.json"
}