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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-xray/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)


695
696
697
698
699
700
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 695

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)


695
696
697
698
699
700
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 695

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