[][src]Struct rusoto_application_insights::Observation

pub struct Observation {
    pub cloud_watch_event_detail_type: Option<String>,
    pub cloud_watch_event_id: Option<String>,
    pub cloud_watch_event_source: Option<String>,
    pub code_deploy_application: Option<String>,
    pub code_deploy_deployment_group: Option<String>,
    pub code_deploy_deployment_id: Option<String>,
    pub code_deploy_instance_group_id: Option<String>,
    pub code_deploy_state: Option<String>,
    pub ec_2_state: Option<String>,
    pub end_time: Option<f64>,
    pub health_event_arn: Option<String>,
    pub health_event_description: Option<String>,
    pub health_event_type_category: Option<String>,
    pub health_event_type_code: Option<String>,
    pub health_service: Option<String>,
    pub id: Option<String>,
    pub line_time: Option<f64>,
    pub log_filter: Option<String>,
    pub log_group: Option<String>,
    pub log_text: Option<String>,
    pub metric_name: Option<String>,
    pub metric_namespace: Option<String>,
    pub source_arn: Option<String>,
    pub source_type: Option<String>,
    pub start_time: Option<f64>,
    pub unit: Option<String>,
    pub value: Option<f64>,
    pub x_ray_error_percent: Option<i64>,
    pub x_ray_fault_percent: Option<i64>,
    pub x_ray_node_name: Option<String>,
    pub x_ray_node_type: Option<String>,
    pub x_ray_request_average_latency: Option<i64>,
    pub x_ray_request_count: Option<i64>,
    pub x_ray_throttle_percent: Option<i64>,
}

Describes an anomaly or error with the application.

Fields

cloud_watch_event_detail_type: Option<String>

The detail type of the CloudWatch Event-based observation, for example, EC2 Instance State-change Notification.

cloud_watch_event_id: Option<String>

The ID of the CloudWatch Event-based observation related to the detected problem.

cloud_watch_event_source: Option<String>

The source of the CloudWatch Event.

code_deploy_application: Option<String>

The CodeDeploy application to which the deployment belongs.

code_deploy_deployment_group: Option<String>

The deployment group to which the CodeDeploy deployment belongs.

code_deploy_deployment_id: Option<String>

The deployment ID of the CodeDeploy-based observation related to the detected problem.

code_deploy_instance_group_id: Option<String>

The instance group to which the CodeDeploy instance belongs.

code_deploy_state: Option<String>

The status of the CodeDeploy deployment, for example SUCCESS or FAILURE.

ec_2_state: Option<String>

The state of the instance, such as STOPPING or TERMINATING.

end_time: Option<f64>

The time when the observation ended, in epoch seconds.

health_event_arn: Option<String>

The Amazon Resource Name (ARN) of the AWS Health Event-based observation.

health_event_description: Option<String>

The description of the AWS Health event provided by the service, such as Amazon EC2.

health_event_type_category: Option<String>

The category of the AWS Health event, such as issue.

health_event_type_code: Option<String>

The type of the AWS Health event, for example, AWS_EC2_POWER_CONNECTIVITY_ISSUE.

health_service: Option<String>

The service to which the AWS Health Event belongs, such as EC2.

id: Option<String>

The ID of the observation type.

line_time: Option<f64>

The timestamp in the CloudWatch Logs that specifies when the matched line occurred.

log_filter: Option<String>

The log filter of the observation.

log_group: Option<String>

The log group name.

log_text: Option<String>

The log text of the observation.

metric_name: Option<String>

The name of the observation metric.

metric_namespace: Option<String>

The namespace of the observation metric.

source_arn: Option<String>

The source resource ARN of the observation.

source_type: Option<String>

The source type of the observation.

start_time: Option<f64>

The time when the observation was first detected, in epoch seconds.

unit: Option<String>

The unit of the source observation metric.

value: Option<f64>

The value of the source observation metric.

x_ray_error_percent: Option<i64>

The X-Ray request error percentage for this node.

x_ray_fault_percent: Option<i64>

The X-Ray request fault percentage for this node.

x_ray_node_name: Option<String>

The name of the X-Ray node.

x_ray_node_type: Option<String>

The type of the X-Ray node.

x_ray_request_average_latency: Option<i64>

The X-Ray node request average latency for this node.

x_ray_request_count: Option<i64>

The X-Ray request count for this node.

x_ray_throttle_percent: Option<i64>

The X-Ray request throttle percentage for this node.

Trait Implementations

impl Clone for Observation[src]

impl Debug for Observation[src]

impl Default for Observation[src]

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

impl PartialEq<Observation> for Observation[src]

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