Struct rusoto_xray::TraceSummary[][src]

pub struct TraceSummary {
    pub annotations: Option<HashMap<String, Vec<ValueWithServiceIds>>>,
    pub duration: Option<f64>,
    pub has_error: Option<bool>,
    pub has_fault: Option<bool>,
    pub has_throttle: Option<bool>,
    pub http: Option<Http>,
    pub id: Option<String>,
    pub is_partial: Option<bool>,
    pub response_time: Option<f64>,
    pub service_ids: Option<Vec<ServiceId>>,
    pub users: Option<Vec<TraceUser>>,
}

Metadata generated from the segment documents in a trace.

Fields

Annotations from the trace's segment documents.

The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.

One or more of the segment documents has a 400 series error.

One or more of the segment documents has a 500 series error.

One or more of the segment documents has a 429 throttling error.

Information about the HTTP request served by the trace.

The unique identifier for the request that generated the trace's segments and subsegments.

One or more of the segment documents is in progress.

The length of time in seconds between the start and end times of the root segment. If the service performs work asynchronously, the response time measures the time before the response is sent to the user, while the duration measures the amount of time before the last traced activity completes.

Service IDs from the trace's segment documents.

Users from the trace's segment documents.

Trait Implementations

impl Default for TraceSummary
[src]

Returns the "default value" for a type. Read more

impl Debug for TraceSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for TraceSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TraceSummary
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations