Class: Aws::XRay::Types::FaultStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::FaultStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
Information about requests that failed with a 5xx Server Error status code.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#other_count ⇒ Integer
The number of requests that failed with untracked 5xx Server Error status codes.
-
#total_count ⇒ Integer
The total number of requests that failed with a 5xx Server Error status code.
Instance Attribute Details
#other_count ⇒ Integer
The number of requests that failed with untracked 5xx Server Error status codes.
711 712 713 714 715 716 |
# File 'lib/aws-sdk-xray/types.rb', line 711 class FaultStatistics < Struct.new( :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |
#total_count ⇒ Integer
The total number of requests that failed with a 5xx Server Error status code.
711 712 713 714 715 716 |
# File 'lib/aws-sdk-xray/types.rb', line 711 class FaultStatistics < Struct.new( :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |