AWS X-Ray · JSON Structure

X Ray Trace Structure

Type: object Properties: 0
DebuggingDistributed TracingMicroservicesObservability

X Ray Trace Structure is a JSON Structure definition published by AWS X-Ray. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "title": "Trace",
  "type": "object",
  "fields": [
    {
      "name": "Id",
      "type": "string",
      "description": "The unique identifier for the request that generated the trace."
    },
    {
      "name": "Duration",
      "type": "double",
      "description": "The length of time in seconds between the start and end times."
    },
    {
      "name": "LimitExceeded",
      "type": "boolean"
    },
    {
      "name": "Segments",
      "type": "array"
    }
  ]
}