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 429 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.
602 603 604 605 606 607 608 |
# File 'lib/aws-sdk-xray/types.rb', line 602 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 429 throttling status code.
602 603 604 605 606 607 608 |
# File 'lib/aws-sdk-xray/types.rb', line 602 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.
602 603 604 605 606 607 608 |
# File 'lib/aws-sdk-xray/types.rb', line 602 class ErrorStatistics < Struct.new( :throttle_count, :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |