[−][src]Struct rusoto_xray::Service
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::Instancefor a application running on Amazon EC2 orAWS::DynamoDB::Tablefor an Amazon DynamoDB table that the application used. -
AWS Service - The type of an AWS service. For example,
AWS::DynamoDBfor 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(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self