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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


758
759
760
761
762
763
# File 'lib/aws-sdk-xray/types.rb', line 758

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)


758
759
760
761
762
763
# File 'lib/aws-sdk-xray/types.rb', line 758

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