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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#other_countInteger

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

Returns:

  • (Integer)


586
587
588
589
590
591
592
# File 'lib/aws-sdk-xray/types.rb', line 586

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

#throttle_countInteger

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

Returns:

  • (Integer)


586
587
588
589
590
591
592
# File 'lib/aws-sdk-xray/types.rb', line 586

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

#total_countInteger

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

Returns:

  • (Integer)


586
587
588
589
590
591
592
# File 'lib/aws-sdk-xray/types.rb', line 586

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