Show / Hide Table of Contents

Class QueryResultMetadataSummary

Summary containing the metadata about the query result set.

Inheritance
object
QueryResultMetadataSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class QueryResultMetadataSummary

Properties

QueryResultRowTypeSummaries

Declaration
[JsonProperty(PropertyName = "queryResultRowTypeSummaries")]
public List<QueryResultRowTypeSummary> QueryResultRowTypeSummaries { get; set; }
Property Value
Type Description
List<QueryResultRowTypeSummary>

A collection of QueryResultRowTypeSummary objects that describe the type and properties of the individual row elements of the query rows being returned. The i-th element in this list contains the QueryResultRowTypeSummary of the i-th key-value pair in the QueryResultRowData map.

QueryResultsGroupedBy

Declaration
[JsonProperty(PropertyName = "queryResultsGroupedBy")]
public List<QueryResultsGroupedBySummary> QueryResultsGroupedBy { get; set; }
Property Value
Type Description
List<QueryResultsGroupedBySummary>

Columns or attributes of the query rows which are group by values. This is a list of ResultsGroupedBy summary objects, and the list will contain as many elements as the attributes and aggregate functions in the group by clause in the select query.

QueryResultsOrderedBy

Declaration
[JsonProperty(PropertyName = "queryResultsOrderedBy")]
public List<QueryResultsOrderedBySummary> QueryResultsOrderedBy { get; set; }
Property Value
Type Description
List<QueryResultsOrderedBySummary>

Order by which the query results are organized. This is a list of queryResultsOrderedBy summary objects, and the list will contain more than one OrderedBy summary object, if the sort was multidimensional.

QueryResultsTopologyInfo

Declaration
[JsonProperty(PropertyName = "queryResultsTopologyInfo")]
public QueryResultsTopologyInfo QueryResultsTopologyInfo { get; set; }
Property Value
Type Description
QueryResultsTopologyInfo

SourceName

Declaration
[JsonProperty(PropertyName = "sourceName")]
public string SourceName { get; set; }
Property Value
Type Description
string

Source of the query result set (traces, spans, and so on).

TimeSeriesIntervalInMins

Declaration
[JsonProperty(PropertyName = "timeSeriesIntervalInMins")]
public int? TimeSeriesIntervalInMins { get; set; }
Property Value
Type Description
int?

Interval for the time series function in minutes.

In this article
Back to top