AWS X-Ray · Schema
TimeSeriesServiceStatistics
DebuggingDistributed TracingMicroservicesObservability
Properties
| Name | Type | Description |
|---|---|---|
| Timestamp | string | |
| EdgeSummaryStatistics | object | |
| ServiceSummaryStatistics | object | |
| ServiceForecastStatistics | object | |
| ResponseTimeHistogram | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TimeSeriesServiceStatistics",
"type": "object",
"properties": {
"Timestamp": {
"type": "string",
"format": "date-time"
},
"EdgeSummaryStatistics": {
"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"
}
}
},
"ServiceSummaryStatistics": {
"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"
}
}
},
"ServiceForecastStatistics": {
"type": "object",
"properties": {
"FaultCountHigh": {
"type": "integer",
"format": "int64"
},
"FaultCountLow": {
"type": "integer",
"format": "int64"
}
}
},
"ResponseTimeHistogram": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Value": {
"type": "number"
},
"Count": {
"type": "integer"
}
}
}
}
}
}