Class: DatadogAPIClient::V2::CIAppGroupByHistogram

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/ci_app_group_by_histogram.rb

Overview

Used to perform a histogram computation (only for measure facets). At most, 100 buckets are allowed, the number of buckets is (max - min)/interval.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#intervalObject

The bin size of the histogram buckets.



26
27
28
# File 'lib/datadog_api_client/v2/models/ci_app_group_by_histogram.rb', line 26

def interval
  @interval
end

#maxObject

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/ci_app_group_by_histogram.rb', line 30

def max
  @max
end

#minObject

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/ci_app_group_by_histogram.rb', line 34

def min
  @min
end