Show / Hide Table of Contents

Class QueryAggregation

Query results.

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

Properties

ArePartialResults

Declaration
[JsonProperty(PropertyName = "arePartialResults")]
public bool? ArePartialResults { get; set; }
Property Value
Type Description
bool?

True if query did not complete processing all data.

Columns

Declaration
[JsonProperty(PropertyName = "columns")]
public List<AbstractColumn> Columns { get; set; }
Property Value
Type Description
List<AbstractColumn>

Query result columns

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<AbstractColumn> Fields { get; set; }
Property Value
Type Description
List<AbstractColumn>

Query result fields

IsContentHidden

Declaration
[JsonProperty(PropertyName = "isContentHidden")]
public bool? IsContentHidden { get; set; }
Property Value
Type Description
bool?

True if the data returned by query is hidden.

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<Dictionary<string, object>> Items { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Query result data

PartialResultReason

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

Explanation of why results may be partial. Only set if arePartialResults is true.

PercentComplete

Declaration
[Required(ErrorMessage = "PercentComplete is required.")]
[JsonProperty(PropertyName = "percentComplete")]
public int? PercentComplete { get; set; }
Property Value
Type Description
int?

Percentage progress completion of the query.

Remarks

Required

QueryExecutionTimeInMs

Declaration
[JsonProperty(PropertyName = "queryExecutionTimeInMs")]
public long? QueryExecutionTimeInMs { get; set; }
Property Value
Type Description
long?

Time ellapsed executing query in milli-seconds.

Recalls

Declaration
[JsonProperty(PropertyName = "recalls")]
public List<RecallDefinition> Recalls { get; set; }
Property Value
Type Description
List<RecallDefinition>

List of recalls in the query.

TimeFilter

Declaration
[JsonProperty(PropertyName = "timeFilter")]
public TimeRange TimeFilter { get; set; }
Property Value
Type Description
TimeRange

TotalCount

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

Number of rows query retrieved. Up to maxTotalCount limit.

TotalGroupCount

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

Number of groups created by query.

TotalMatchedCount

Declaration
[JsonProperty(PropertyName = "totalMatchedCount")]
public long? TotalMatchedCount { get; set; }
Property Value
Type Description
long?

Number of rows matched by query.

In this article
Back to top