Class: DatadogAPIClient::V2::ProductAnalyticsJourneyScalarCompute
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::ProductAnalyticsJourneyScalarCompute
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/product_analytics_journey_scalar_compute.rb
Overview
Defines the metric computed over the journey for a scalar query.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#aggregation ⇒ Object
readonly
Aggregation function:
count,cardinality,avg,median,min,max,sum, or a percentile of the formpc<N>such aspc95. -
#metric ⇒ Object
Metric to aggregate on.
-
#target ⇒ Object
A reference to a step, or a range of steps, in the journey.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
38 39 40 |
# File 'lib/datadog_api_client/v2/models/product_analytics_journey_scalar_compute.rb', line 38 def additional_properties @additional_properties end |
#aggregation ⇒ Object
Aggregation function: count, cardinality, avg, median, min, max, sum,
or a percentile of the form pc<N> such as pc95. Defaults to cardinality.
26 27 28 |
# File 'lib/datadog_api_client/v2/models/product_analytics_journey_scalar_compute.rb', line 26 def aggregation @aggregation end |
#metric ⇒ Object
Metric to aggregate on. Use a facet path such as @view.time_spent, or one of the
journey metrics __dd.conversion, __dd.conversion_rate, __dd.time_to_convert,
or __dd.dropoff_rate. Defaults to __dd.conversion.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/product_analytics_journey_scalar_compute.rb', line 31 def metric @metric end |
#target ⇒ Object
A reference to a step, or a range of steps, in the journey.
Use a node target to name a single step, or a path target to name the range
between two steps.
36 37 38 |
# File 'lib/datadog_api_client/v2/models/product_analytics_journey_scalar_compute.rb', line 36 def target @target end |