[][src]Struct rusoto_xray::Service

pub struct Service {
    pub account_id: Option<String>,
    pub duration_histogram: Option<Vec<HistogramEntry>>,
    pub edges: Option<Vec<Edge>>,
    pub end_time: Option<f64>,
    pub name: Option<String>,
    pub names: Option<Vec<String>>,
    pub reference_id: Option<i64>,
    pub response_time_histogram: Option<Vec<HistogramEntry>>,
    pub root: Option<bool>,
    pub start_time: Option<f64>,
    pub state: Option<String>,
    pub summary_statistics: Option<ServiceStatistics>,
    pub type_: Option<String>,
}

Information about an application that processed requests, users that made requests, or downstream services, resources and applications that an application used.

Fields

account_id: Option<String>

Identifier of the AWS account in which the service runs.

duration_histogram: Option<Vec<HistogramEntry>>

A histogram that maps the spread of service durations.

edges: Option<Vec<Edge>>

Connections to downstream services.

end_time: Option<f64>

The end time of the last segment that the service generated.

name: Option<String>

The canonical name of the service.

names: Option<Vec<String>>

A list of names for the service, including the canonical name.

reference_id: Option<i64>

Identifier for the service. Unique within the service map.

response_time_histogram: Option<Vec<HistogramEntry>>

A histogram that maps the spread of service response times.

root: Option<bool>

Indicates that the service was the first service to process a request.

start_time: Option<f64>

The start time of the first segment that the service generated.

state: Option<String>

The service's state.

summary_statistics: Option<ServiceStatistics>

Aggregated statistics for the service.

type_: Option<String>

The type of service.

  • AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for a application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.

  • AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.

  • client - Represents the clients that sent requests to a root service.

  • remote - A downstream service of indeterminate type.

Trait Implementations

impl PartialEq<Service> for Service[src]

impl Default for Service[src]

impl Clone for Service[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Service[src]

impl<'de> Deserialize<'de> for Service[src]

Auto Trait Implementations

impl Send for Service

impl Sync for Service

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self