Class: Google::Apis::MonitoringV3::Trigger
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::Trigger
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb 
Overview
Specifies how many time series must fail a predicate to trigger a condition.
If not specified, then a count: 1 trigger is used.
Instance Attribute Summary collapse
- 
  
    
      #count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The absolute number of time series that must fail the predicate for the condition to be triggered.
 - 
  
    
      #percent  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of time series that must fail the predicate for the condition to be triggered.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Trigger 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Trigger.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Trigger
Returns a new instance of Trigger.
      4890 4891 4892  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4890 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#count ⇒ Fixnum
The absolute number of time series that must fail the predicate for the
condition to be triggered.
Corresponds to the JSON property count
      4882 4883 4884  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4882 def count @count end  | 
  
#percent ⇒ Float
The percentage of time series that must fail the predicate for the condition
to be triggered.
Corresponds to the JSON property percent
      4888 4889 4890  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4888 def percent @percent end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4895 4896 4897 4898  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4895 def update!(**args) @count = args[:count] if args.key?(:count) @percent = args[:percent] if args.key?(:percent) end  |