Class: Aws::XRay::Types::ForecastStatistics
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::ForecastStatistics
 
 
- 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
- 
  
    
      #fault_count_high  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The upper limit of fault counts for a service.
 - 
  
    
      #fault_count_low  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The lower limit of fault counts for a service.
 
Instance Attribute Details
#fault_count_high ⇒ Integer
The upper limit of fault counts for a service.
      731 732 733 734 735 736  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 731 class ForecastStatistics < Struct.new( :fault_count_high, :fault_count_low) SENSITIVE = [] include Aws::Structure end  | 
  
#fault_count_low ⇒ Integer
The lower limit of fault counts for a service.
      731 732 733 734 735 736  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 731 class ForecastStatistics < Struct.new( :fault_count_high, :fault_count_low) SENSITIVE = [] include Aws::Structure end  |