Class: DatadogAPIClient::V2::SpansGroupByHistogram
- Inherits:
 - 
      Object
      
        
- Object
 - DatadogAPIClient::V2::SpansGroupByHistogram
 
 
- Includes:
 - BaseGenericModel
 
- Defined in:
 - lib/datadog_api_client/v2/models/spans_group_by_histogram.rb
 
Overview
Used to perform a histogram computation (only for measure facets). Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.
Instance Attribute Summary collapse
- 
  
    
      #additional_properties  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute additional_properties.
 - 
  
    
      #interval  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The bin size of the histogram buckets.
 - 
  
    
      #max  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The maximum value for the measure used in the histogram (values greater than this one are filtered out).
 - 
  
    
      #min  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The minimum value for the measure used in the histogram (values smaller than this one are filtered out).
 
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
      36 37 38  | 
    
      # File 'lib/datadog_api_client/v2/models/spans_group_by_histogram.rb', line 36 def additional_properties @additional_properties end  | 
  
#interval ⇒ Object
The bin size of the histogram buckets.
      26 27 28  | 
    
      # File 'lib/datadog_api_client/v2/models/spans_group_by_histogram.rb', line 26 def interval @interval end  | 
  
#max ⇒ Object
The maximum value for the measure used in the histogram (values greater than this one are filtered out).
      30 31 32  | 
    
      # File 'lib/datadog_api_client/v2/models/spans_group_by_histogram.rb', line 30 def max @max end  | 
  
#min ⇒ Object
The minimum value for the measure used in the histogram (values smaller than this one are filtered out).
      34 35 36  | 
    
      # File 'lib/datadog_api_client/v2/models/spans_group_by_histogram.rb', line 34 def min @min end  |