Class: DatadogAPIClient::V2::ProductAnalyticsGraphQueryCompute
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::ProductAnalyticsGraphQueryCompute
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/product_analytics_graph_query_compute.rb
Overview
Defines the metric computed over the journey.
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. -
#interval ⇒ Object
Time bucket interval in milliseconds, used by timeseries queries.
-
#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.
41 42 43 |
# File 'lib/datadog_api_client/v2/models/product_analytics_graph_query_compute.rb', line 41 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_graph_query_compute.rb', line 26 def aggregation @aggregation end |
#interval ⇒ Object
Time bucket interval in milliseconds, used by timeseries queries.
29 30 31 |
# File 'lib/datadog_api_client/v2/models/product_analytics_graph_query_compute.rb', line 29 def interval @interval 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.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/product_analytics_graph_query_compute.rb', line 34 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.
39 40 41 |
# File 'lib/datadog_api_client/v2/models/product_analytics_graph_query_compute.rb', line 39 def target @target end |