Class: Aws::ApplicationInsights::Types::Observation
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::Observation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationinsights/types.rb
Overview
Describes an anomaly or error with the application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_event_detail_type ⇒ String
The detail type of the CloudWatch Event-based observation, for example, ‘EC2 Instance State-change Notification`.
-
#cloud_watch_event_id ⇒ String
The ID of the CloudWatch Event-based observation related to the detected problem.
-
#cloud_watch_event_source ⇒ String
The source of the CloudWatch Event.
-
#code_deploy_application ⇒ String
The CodeDeploy application to which the deployment belongs.
-
#code_deploy_deployment_group ⇒ String
The deployment group to which the CodeDeploy deployment belongs.
-
#code_deploy_deployment_id ⇒ String
The deployment ID of the CodeDeploy-based observation related to the detected problem.
-
#code_deploy_instance_group_id ⇒ String
The instance group to which the CodeDeploy instance belongs.
-
#code_deploy_state ⇒ String
The status of the CodeDeploy deployment, for example ‘SUCCESS` or ` FAILURE`.
-
#ebs_cause ⇒ String
The cause of an EBS CloudWatch event.
-
#ebs_event ⇒ String
The type of EBS CloudWatch event, such as ‘createVolume`, `deleteVolume` or `attachVolume`.
-
#ebs_request_id ⇒ String
The request ID of an EBS CloudWatch event.
-
#ebs_result ⇒ String
The result of an EBS CloudWatch event, such as ‘failed` or `succeeded`.
-
#ec2_state ⇒ String
The state of the instance, such as ‘STOPPING` or `TERMINATING`.
-
#end_time ⇒ Time
The time when the observation ended, in epoch seconds.
-
#health_event_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS Health Event-based observation.
-
#health_event_description ⇒ String
The description of the AWS Health event provided by the service, such as Amazon EC2.
-
#health_event_type_category ⇒ String
The category of the AWS Health event, such as ‘issue`.
-
#health_event_type_code ⇒ String
The type of the AWS Health event, for example, ‘AWS_EC2_POWER_CONNECTIVITY_ISSUE`.
-
#health_service ⇒ String
The service to which the AWS Health Event belongs, such as EC2.
-
#id ⇒ String
The ID of the observation type.
-
#line_time ⇒ Time
The timestamp in the CloudWatch Logs that specifies when the matched line occurred.
-
#log_filter ⇒ String
The log filter of the observation.
-
#log_group ⇒ String
The log group name.
-
#log_text ⇒ String
The log text of the observation.
-
#metric_name ⇒ String
The name of the observation metric.
-
#metric_namespace ⇒ String
The namespace of the observation metric.
-
#rds_event_categories ⇒ String
The category of an RDS event.
-
#rds_event_message ⇒ String
The message of an RDS event.
-
#s3_event_name ⇒ String
The name of the S3 CloudWatch Event-based observation.
-
#source_arn ⇒ String
The source resource ARN of the observation.
-
#source_type ⇒ String
The source type of the observation.
-
#start_time ⇒ Time
The time when the observation was first detected, in epoch seconds.
-
#states_arn ⇒ String
The Amazon Resource Name (ARN) of the step function-based observation.
-
#states_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the step function execution-based observation.
-
#states_input ⇒ String
The input to the step function-based observation.
-
#states_status ⇒ String
The status of the step function-related observation.
-
#unit ⇒ String
The unit of the source observation metric.
-
#value ⇒ Float
The value of the source observation metric.
-
#x_ray_error_percent ⇒ Integer
The X-Ray request error percentage for this node.
-
#x_ray_fault_percent ⇒ Integer
The X-Ray request fault percentage for this node.
-
#x_ray_node_name ⇒ String
The name of the X-Ray node.
-
#x_ray_node_type ⇒ String
The type of the X-Ray node.
-
#x_ray_request_average_latency ⇒ Integer
The X-Ray node request average latency for this node.
-
#x_ray_request_count ⇒ Integer
The X-Ray request count for this node.
-
#x_ray_throttle_percent ⇒ Integer
The X-Ray request throttle percentage for this node.
Instance Attribute Details
#cloud_watch_event_detail_type ⇒ String
The detail type of the CloudWatch Event-based observation, for example, ‘EC2 Instance State-change Notification`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#cloud_watch_event_id ⇒ String
The ID of the CloudWatch Event-based observation related to the detected problem.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#cloud_watch_event_source ⇒ String
The source of the CloudWatch Event.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#code_deploy_application ⇒ String
The CodeDeploy application to which the deployment belongs.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#code_deploy_deployment_group ⇒ String
The deployment group to which the CodeDeploy deployment belongs.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#code_deploy_deployment_id ⇒ String
The deployment ID of the CodeDeploy-based observation related to the detected problem.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#code_deploy_instance_group_id ⇒ String
The instance group to which the CodeDeploy instance belongs.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#code_deploy_state ⇒ String
The status of the CodeDeploy deployment, for example ‘SUCCESS` or ` FAILURE`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#ebs_cause ⇒ String
The cause of an EBS CloudWatch event.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#ebs_event ⇒ String
The type of EBS CloudWatch event, such as ‘createVolume`, `deleteVolume` or `attachVolume`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#ebs_request_id ⇒ String
The request ID of an EBS CloudWatch event.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#ebs_result ⇒ String
The result of an EBS CloudWatch event, such as ‘failed` or `succeeded`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#ec2_state ⇒ String
The state of the instance, such as ‘STOPPING` or `TERMINATING`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The time when the observation ended, in epoch seconds.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#health_event_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS Health Event-based observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#health_event_description ⇒ String
The description of the AWS Health event provided by the service, such as Amazon EC2.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#health_event_type_category ⇒ String
The category of the AWS Health event, such as ‘issue`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#health_event_type_code ⇒ String
The type of the AWS Health event, for example, ‘AWS_EC2_POWER_CONNECTIVITY_ISSUE`.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#health_service ⇒ String
The service to which the AWS Health Event belongs, such as EC2.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the observation type.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#line_time ⇒ Time
The timestamp in the CloudWatch Logs that specifies when the matched line occurred.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#log_filter ⇒ String
The log filter of the observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#log_group ⇒ String
The log group name.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#log_text ⇒ String
The log text of the observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#metric_name ⇒ String
The name of the observation metric.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#metric_namespace ⇒ String
The namespace of the observation metric.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#rds_event_categories ⇒ String
The category of an RDS event.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#rds_event_message ⇒ String
The message of an RDS event.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#s3_event_name ⇒ String
The name of the S3 CloudWatch Event-based observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#source_arn ⇒ String
The source resource ARN of the observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
The source type of the observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The time when the observation was first detected, in epoch seconds.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#states_arn ⇒ String
The Amazon Resource Name (ARN) of the step function-based observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#states_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the step function execution-based observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#states_input ⇒ String
The input to the step function-based observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#states_status ⇒ String
The status of the step function-related observation.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The unit of the source observation metric.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value of the source observation metric.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_error_percent ⇒ Integer
The X-Ray request error percentage for this node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_fault_percent ⇒ Integer
The X-Ray request fault percentage for this node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_node_name ⇒ String
The name of the X-Ray node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_node_type ⇒ String
The type of the X-Ray node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_request_average_latency ⇒ Integer
The X-Ray node request average latency for this node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_request_count ⇒ Integer
The X-Ray request count for this node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |
#x_ray_throttle_percent ⇒ Integer
The X-Ray request throttle percentage for this node.
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1527 class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value, :cloud_watch_event_id, :cloud_watch_event_source, :cloud_watch_event_detail_type, :health_event_arn, :health_service, :health_event_type_code, :health_event_type_category, :health_event_description, :code_deploy_deployment_id, :code_deploy_deployment_group, :code_deploy_state, :code_deploy_application, :code_deploy_instance_group_id, :ec2_state, :rds_event_categories, :rds_event_message, :s3_event_name, :states_execution_arn, :states_arn, :states_status, :states_input, :ebs_event, :ebs_result, :ebs_cause, :ebs_request_id, :x_ray_fault_percent, :x_ray_throttle_percent, :x_ray_error_percent, :x_ray_request_count, :x_ray_request_average_latency, :x_ray_node_name, :x_ray_node_type) SENSITIVE = [] include Aws::Structure end |