Class: Aws::XRay::Types::Trace
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::Trace
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
A collection of segment documents with matching trace IDs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration ⇒ Float
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
-
#id ⇒ String
The unique identifier for the request that generated the trace’s segments and subsegments.
-
#limit_exceeded ⇒ Boolean
LimitExceeded is set to true when the trace has exceeded the ‘Trace document size` limit.
-
#segments ⇒ Array<Types::Segment>
Segment documents for the segments and subsegments that comprise the trace.
Instance Attribute Details
#duration ⇒ Float
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
3045 3046 3047 3048 3049 3050 3051 3052 |
# File 'lib/aws-sdk-xray/types.rb', line 3045 class Trace < Struct.new( :id, :duration, :limit_exceeded, :segments) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique identifier for the request that generated the trace’s segments and subsegments.
3045 3046 3047 3048 3049 3050 3051 3052 |
# File 'lib/aws-sdk-xray/types.rb', line 3045 class Trace < Struct.new( :id, :duration, :limit_exceeded, :segments) SENSITIVE = [] include Aws::Structure end |
#limit_exceeded ⇒ Boolean
LimitExceeded is set to true when the trace has exceeded the ‘Trace document size` limit. For more information about this limit and other X-Ray limits and quotas, see [Amazon Web Services X-Ray endpoints and quotas].
3045 3046 3047 3048 3049 3050 3051 3052 |
# File 'lib/aws-sdk-xray/types.rb', line 3045 class Trace < Struct.new( :id, :duration, :limit_exceeded, :segments) SENSITIVE = [] include Aws::Structure end |
#segments ⇒ Array<Types::Segment>
Segment documents for the segments and subsegments that comprise the trace.
3045 3046 3047 3048 3049 3050 3051 3052 |
# File 'lib/aws-sdk-xray/types.rb', line 3045 class Trace < Struct.new( :id, :duration, :limit_exceeded, :segments) SENSITIVE = [] include Aws::Structure end |