Class: Aws::XRay::Types::ErrorStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ErrorStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
Information about requests that failed with a 4xx Client Error status code.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#other_count ⇒ Integer
The number of requests that failed with untracked 4xx Client Error status codes.
-
#throttle_count ⇒ Integer
The number of requests that failed with a 419 throttling status code.
-
#total_count ⇒ Integer
The total number of requests that failed with a 4xx Client Error status code.
Instance Attribute Details
#other_count ⇒ Integer
The number of requests that failed with untracked 4xx Client Error status codes.
586 587 588 589 590 591 592 |
# File 'lib/aws-sdk-xray/types.rb', line 586 class ErrorStatistics < Struct.new( :throttle_count, :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |
#throttle_count ⇒ Integer
The number of requests that failed with a 419 throttling status code.
586 587 588 589 590 591 592 |
# File 'lib/aws-sdk-xray/types.rb', line 586 class ErrorStatistics < Struct.new( :throttle_count, :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |
#total_count ⇒ Integer
The total number of requests that failed with a 4xx Client Error status code.
586 587 588 589 590 591 592 |
# File 'lib/aws-sdk-xray/types.rb', line 586 class ErrorStatistics < Struct.new( :throttle_count, :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |