Class: Aws::XRay::Types::RequestImpactStatistics

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

Overview

Statistics that describe how the incident has impacted a service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fault_countInteger

The number of requests that have resulted in a fault,

Returns:

  • (Integer)


2127
2128
2129
2130
2131
2132
2133
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2127

class RequestImpactStatistics < Struct.new(
  :fault_count,
  :ok_count,
  :total_count)
  SENSITIVE = []
  include Aws::Structure
end

#ok_countInteger

The number of successful requests.

Returns:

  • (Integer)


2127
2128
2129
2130
2131
2132
2133
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2127

class RequestImpactStatistics < Struct.new(
  :fault_count,
  :ok_count,
  :total_count)
  SENSITIVE = []
  include Aws::Structure
end

#total_countInteger

The total number of requests to the service.

Returns:

  • (Integer)


2127
2128
2129
2130
2131
2132
2133
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2127

class RequestImpactStatistics < Struct.new(
  :fault_count,
  :ok_count,
  :total_count)
  SENSITIVE = []
  include Aws::Structure
end