Class: Aws::XRay::Types::ForecastStatistics

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

Overview

The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fault_count_highInteger

The upper limit of fault counts for a service.

Returns:

  • (Integer)


715
716
717
718
719
720
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 715

class ForecastStatistics < Struct.new(
  :fault_count_high,
  :fault_count_low)
  SENSITIVE = []
  include Aws::Structure
end

#fault_count_lowInteger

The lower limit of fault counts for a service.

Returns:

  • (Integer)


715
716
717
718
719
720
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 715

class ForecastStatistics < Struct.new(
  :fault_count_high,
  :fault_count_low)
  SENSITIVE = []
  include Aws::Structure
end