AWS X-Ray · Schema

ServiceStatistics

DebuggingDistributed TracingMicroservicesObservability

Properties

Name Type Description
OkCount integer
ErrorStatistics object
FaultStatistics object
TotalCount integer
TotalResponseTime number
View JSON Schema on GitHub

JSON Schema

x-ray-servicestatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ServiceStatistics",
  "type": "object",
  "properties": {
    "OkCount": {
      "type": "integer",
      "format": "int64"
    },
    "ErrorStatistics": {
      "type": "object",
      "properties": {
        "ThrottleCount": {
          "type": "integer",
          "format": "int64"
        },
        "OtherCount": {
          "type": "integer",
          "format": "int64"
        },
        "TotalCount": {
          "type": "integer",
          "format": "int64"
        }
      }
    },
    "FaultStatistics": {
      "type": "object",
      "properties": {
        "OtherCount": {
          "type": "integer",
          "format": "int64"
        },
        "TotalCount": {
          "type": "integer",
          "format": "int64"
        }
      }
    },
    "TotalCount": {
      "type": "integer",
      "format": "int64"
    },
    "TotalResponseTime": {
      "type": "number"
    }
  }
}