[][src]Struct rusoto_xray::InsightEvent

pub struct InsightEvent {
    pub client_request_impact_statistics: Option<RequestImpactStatistics>,
    pub event_time: Option<f64>,
    pub root_cause_service_request_impact_statistics: Option<RequestImpactStatistics>,
    pub summary: Option<String>,
    pub top_anomalous_services: Option<Vec<AnomalousService>>,
}

X-Ray reevaluates insights periodically until they are resolved, and records each intermediate state in an event. You can review incident events in the Impact Timeline on the Inspect page in the X-Ray console.

Fields

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.

event_time: Option<f64>

The time, in Unix seconds, at which the event was recorded.

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.

summary: Option<String>

A brief description of the event.

top_anomalous_services: Option<Vec<AnomalousService>>

The service during the event that is most impacted by the incident.

Trait Implementations

impl Clone for InsightEvent[src]

impl Debug for InsightEvent[src]

impl Default for InsightEvent[src]

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

impl PartialEq<InsightEvent> for InsightEvent[src]

impl StructuralPartialEq for InsightEvent[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.