Amazon X-Ray · JSON Structure

Xray Forecast Statistics Structure

The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.

Type: object Properties: 2
Application PerformanceDebuggingDistributed TracingMonitoringObservability

ForecastStatistics 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

FaultCountHigh FaultCountLow

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "FaultCountHigh": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The upper limit of fault counts for a service."
        }
      ]
    },
    "FaultCountLow": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableLong"
        },
        {
          "description": "The lower limit of fault counts for a service."
        }
      ]
    }
  },
  "description": "The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "ForecastStatistics",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-forecast-statistics-structure.json"
}