Class: Aws::XRay::Types::ErrorStatistics

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

Overview

Information about requests that failed with a 4xx Client Error status code.

Instance Attribute Summary collapse

Instance Attribute Details

#other_countInteger

The number of requests that failed with untracked 4xx Client Error status codes.

Returns:

  • (Integer)


506
507
508
509
510
511
# File 'lib/aws-sdk-xray/types.rb', line 506

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

#throttle_countInteger

The number of requests that failed with a 419 throttling status code.

Returns:

  • (Integer)


506
507
508
509
510
511
# File 'lib/aws-sdk-xray/types.rb', line 506

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

#total_countInteger

The total number of requests that failed with a 4xx Client Error status code.

Returns:

  • (Integer)


506
507
508
509
510
511
# File 'lib/aws-sdk-xray/types.rb', line 506

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