Class: Google::Apis::MonitoringV3::MetricDescriptorMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::MetricDescriptorMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb 
Overview
Additional annotations that can be used to guide the usage of a metric.
Instance Attribute Summary collapse
- 
  
    
      #ingest_delay  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The delay of data points caused by ingestion.
 - 
  
    
      #launch_stage  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The launch stage of the metric definition.
 - 
  
    
      #sample_period  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The sampling period of metric data points.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MetricDescriptorMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MetricDescriptorMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetricDescriptorMetadata
Returns a new instance of MetricDescriptorMetadata
      1850 1851 1852  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1850 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#ingest_delay ⇒ String
The delay of data points caused by ingestion. Data points older than this age
are guaranteed to be ingested and available to be read, excluding data loss
due to errors.
Corresponds to the JSON property ingestDelay
      1835 1836 1837  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1835 def ingest_delay @ingest_delay end  | 
  
#launch_stage ⇒ String
The launch stage of the metric definition.
Corresponds to the JSON property launchStage
      1840 1841 1842  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1840 def launch_stage @launch_stage end  | 
  
#sample_period ⇒ String
The sampling period of metric data points. For metrics which are written
periodically, consecutive data points are stored at this time interval,
excluding data loss due to errors. Metrics with a higher granularity have a
smaller sampling period.
Corresponds to the JSON property samplePeriod
      1848 1849 1850  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1848 def sample_period @sample_period end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1855 1856 1857 1858 1859  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1855 def update!(**args) @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay) @launch_stage = args[:launch_stage] if args.key?(:launch_stage) @sample_period = args[:sample_period] if args.key?(:sample_period) end  |