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.
695 696 697 698 699 700 |
# File 'lib/aws-sdk-xray/types.rb', line 695 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.
695 696 697 698 699 700 |
# File 'lib/aws-sdk-xray/types.rb', line 695 class FaultStatistics < Struct.new( :other_count, :total_count) SENSITIVE = [] include Aws::Structure end |