Class: Aws::InternetMonitor::Types::AvailabilityMeasurement
- Inherits:
-
Struct
- Object
- Struct
- Aws::InternetMonitor::Types::AvailabilityMeasurement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-internetmonitor/types.rb
Overview
Amazon CloudWatch Internet Monitor calculates measurements about the availability for your application’s internet traffic between client locations and Amazon Web Services. Amazon Web Services has substantial historical data about internet performance and availability between Amazon Web Services services and different network providers and geographies. By applying statistical analysis to the data, Internet Monitor can detect when the performance and availability for your application has dropped, compared to an estimated baseline that’s already calculated. To make it easier to see those drops, we report that information to you in the form of health scores: a performance score and an availability score.
Availability in Internet Monitor represents the estimated percentage of traffic that is not seeing an availability drop. For example, an availability score of 99% for an end user and service location pair is equivalent to 1% of the traffic experiencing an availability drop for that pair.
For more information, see [How Internet Monitor calculates performance and availability scores] in the Amazon CloudWatch Internet Monitor section of the *Amazon CloudWatch User Guide*.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#experience_score ⇒ Float
Experience scores, or health scores are calculated for different geographic and network provider combinations (that is, different granularities) and also summed into global scores.
-
#percent_of_client_location_impacted ⇒ Float
The percentage of impact caused by a health event for client location traffic globally.
-
#percent_of_total_traffic_impacted ⇒ Float
The impact on total traffic that a health event has, in increased latency or reduced availability.
Instance Attribute Details
#experience_score ⇒ Float
Experience scores, or health scores are calculated for different geographic and network provider combinations (that is, different granularities) and also summed into global scores. If you view performance or availability scores without filtering for any specific geography or service provider, Amazon CloudWatch Internet Monitor provides global health scores.
The Amazon CloudWatch Internet Monitor chapter in the *CloudWatch User Guide* includes detailed information about how Internet Monitor calculates health scores, including performance and availability scores, and when it creates and resolves health events. For more information, see [How Amazon Web Services calculates performance and availability scores] in the Amazon CloudWatch Internet Monitor section of the *CloudWatch User Guide*.
105 106 107 108 109 110 111 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 105 class AvailabilityMeasurement < Struct.new( :experience_score, :percent_of_total_traffic_impacted, :percent_of_client_location_impacted) SENSITIVE = [] include Aws::Structure end |
#percent_of_client_location_impacted ⇒ Float
The percentage of impact caused by a health event for client location traffic globally.
For information about how Internet Monitor calculates impact, see
- Inside Internet Monitor][1
-
in the Amazon CloudWatch Internet
Monitor section of the Amazon CloudWatch User Guide.
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-inside-internet-monitor.html
105 106 107 108 109 110 111 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 105 class AvailabilityMeasurement < Struct.new( :experience_score, :percent_of_total_traffic_impacted, :percent_of_client_location_impacted) SENSITIVE = [] include Aws::Structure end |
#percent_of_total_traffic_impacted ⇒ Float
The impact on total traffic that a health event has, in increased latency or reduced availability. This is the percentage of how much latency has increased or availability has decreased during the event, compared to what is typical for traffic from this client location to the Amazon Web Services location using this client network.
For information about how Internet Monitor calculates impact, see
- How Internet Monitor works][1
-
in the Amazon CloudWatch Internet
Monitor section of the Amazon CloudWatch User Guide.
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-inside-internet-monitor.html
105 106 107 108 109 110 111 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 105 class AvailabilityMeasurement < Struct.new( :experience_score, :percent_of_total_traffic_impacted, :percent_of_client_location_impacted) SENSITIVE = [] include Aws::Structure end |