Struct aws_sdk_xray::types::Trace
source · #[non_exhaustive]pub struct Trace {
pub id: Option<String>,
pub duration: Option<f64>,
pub limit_exceeded: Option<bool>,
pub segments: Option<Vec<Segment>>,
}
Expand description
A collection of segment documents with matching trace IDs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The unique identifier for the request that generated the trace's segments and subsegments.
duration: Option<f64>
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
limit_exceeded: Option<bool>
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.
segments: Option<Vec<Segment>>
Segment documents for the segments and subsegments that comprise the trace.
Implementations§
source§impl Trace
impl Trace
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The unique identifier for the request that generated the trace's segments and subsegments.
sourcepub fn duration(&self) -> Option<f64>
pub fn duration(&self) -> Option<f64>
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
sourcepub fn limit_exceeded(&self) -> Option<bool>
pub fn limit_exceeded(&self) -> Option<bool>
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.