Class: DatadogAPIClient::V2::ProductAnalyticsAnalyticsListQuery

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

Overview

The analytics list query definition. It selects the events to return with query, then chooses the columns on each event row, the sort applied to those rows, and a row limit. Unlike the scalar and timeseries queries, a list query returns raw event rows rather than aggregates, so it takes no compute or group-by rule.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.



44
45
46
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 44

def additional_properties
  @additional_properties
end

#audience_filtersObject

Audience filter definitions for targeting specific user segments.



28
29
30
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 28

def audience_filters
  @audience_filters
end

#columnsObject

Attribute columns to include in each event row.



31
32
33
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 31

def columns
  @columns
end

#limitObject

Maximum number of event rows to return.



34
35
36
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 34

def limit
  @limit
end

#queryObject

A query definition discriminated by the data_source field. Use product_analytics for standard event queries, or product_analytics_occurrence for occurrence-filtered queries.



39
40
41
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 39

def query
  @query
end

#sortObject

The sort applied to the returned event rows.



42
43
44
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_query.rb', line 42

def sort
  @sort
end