Class: Aws::XRay::Types::Trace
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::Trace
- Defined in:
- gems/aws-sdk-xray/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 earliest segment that started 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 earliest segment that started and the end time of the last segment that completed.
3574 3575 3576 3577 3578 3579 3580 3581 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3574 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.
3574 3575 3576 3577 3578 3579 3580 3581 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3574 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.
3574 3575 3576 3577 3578 3579 3580 3581 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3574 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.
3574 3575 3576 3577 3578 3579 3580 3581 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3574 class Trace < Struct.new( :id, :duration, :limit_exceeded, :segments) SENSITIVE = [] include Aws::Structure end |