[][src]Struct rusoto_xray::Insight

pub struct Insight {
    pub categories: Option<Vec<String>>,
    pub client_request_impact_statistics: Option<RequestImpactStatistics>,
    pub end_time: Option<f64>,
    pub group_arn: Option<String>,
    pub group_name: Option<String>,
    pub insight_id: Option<String>,
    pub root_cause_service_id: Option<ServiceId>,
    pub root_cause_service_request_impact_statistics: Option<RequestImpactStatistics>,
    pub start_time: Option<f64>,
    pub state: Option<String>,
    pub summary: Option<String>,
    pub top_anomalous_services: Option<Vec<AnomalousService>>,
}

When fault rates go outside of the expected range, X-Ray creates an insight. Insights tracks emergent issues within your applications.

Fields

categories: Option<Vec<String>>

The categories that label and describe the type of insight.

client_request_impact_statistics: Option<RequestImpactStatistics>

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

end_time: Option<f64>

The time, in Unix seconds, at which the insight ended.

group_arn: Option<String>

The Amazon Resource Name (ARN) of the group that the insight belongs to.

group_name: Option<String>

The name of the group that the insight belongs to.

insight_id: Option<String>

The insights unique identifier.

root_cause_service_id: Option<ServiceId>root_cause_service_request_impact_statistics: Option<RequestImpactStatistics>

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

start_time: Option<f64>

The time, in Unix seconds, at which the insight began.

state: Option<String>

The current state of the insight.

summary: Option<String>

A brief description of the insight.

top_anomalous_services: Option<Vec<AnomalousService>>

The service within the insight that is most impacted by the incident.

Trait Implementations

impl Clone for Insight[src]

impl Debug for Insight[src]

impl Default for Insight[src]

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

impl PartialEq<Insight> for Insight[src]

impl StructuralPartialEq for Insight[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.