AWS X-Ray · Schema

GetServiceGraphResult

DebuggingDistributed TracingMicroservicesObservability

Properties

Name Type Description
StartTime string
EndTime string
Services array
ContainsOldGroupVersions boolean
NextToken string
View JSON Schema on GitHub

JSON Schema

x-ray-getservicegraphresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetServiceGraphResult",
  "type": "object",
  "properties": {
    "StartTime": {
      "type": "string",
      "format": "date-time"
    },
    "EndTime": {
      "type": "string",
      "format": "date-time"
    },
    "Services": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ReferenceId": {
            "type": "integer"
          },
          "Name": {
            "type": "string"
          },
          "Names": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Root": {
            "type": "boolean"
          },
          "AccountId": {
            "type": "string"
          },
          "Type": {
            "type": "string"
          },
          "State": {
            "type": "string"
          },
          "StartTime": {
            "type": "string",
            "format": "date-time"
          },
          "EndTime": {
            "type": "string",
            "format": "date-time"
          },
          "Edges": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "ReferenceId": {
                  "type": "integer"
                },
                "StartTime": {
                  "type": "string",
                  "format": "date-time"
                },
                "EndTime": {
                  "type": "string",
                  "format": "date-time"
                },
                "SummaryStatistics": {
                  "$ref": "#/components/schemas/EdgeStatistics"
                },
                "ResponseTimeHistogram": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/HistogramEntry"
                  }
                }
              }
            }
          },
          "SummaryStatistics": {
            "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"
              }
            }
          },
          "ResponseTimeHistogram": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HistogramEntry"
            }
          },
          "DurationHistogram": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HistogramEntry"
            }
          }
        }
      }
    },
    "ContainsOldGroupVersions": {
      "type": "boolean"
    },
    "NextToken": {
      "type": "string"
    }
  }
}