Class: Aws::XRay::Types::FaultStatistics

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Information about requests that failed with a 5xx Server Error status code.

Instance Attribute Summary collapse

Instance Attribute Details

#other_countInteger

The number of requests that failed with untracked 5xx Server Error status codes.

Returns:

  • (Integer)


606
607
608
609
610
# File 'lib/aws-sdk-xray/types.rb', line 606

class FaultStatistics < Struct.new(
  :other_count,
  :total_count)
  include Aws::Structure
end

#total_countInteger

The total number of requests that failed with a 5xx Server Error status code.

Returns:

  • (Integer)


606
607
608
609
610
# File 'lib/aws-sdk-xray/types.rb', line 606

class FaultStatistics < Struct.new(
  :other_count,
  :total_count)
  include Aws::Structure
end