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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#other_countInteger

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

Returns:

  • (Integer)


739
740
741
742
743
744
# File 'lib/aws-sdk-xray/types.rb', line 739

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

#total_countInteger

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

Returns:

  • (Integer)


739
740
741
742
743
744
# File 'lib/aws-sdk-xray/types.rb', line 739

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