Show / Hide Table of Contents

Class TimeStatsDataColumn

A data series specific to a particular TIMESTATS output field.

Inheritance
object
AbstractColumn
TimeStatsDataColumn
Inherited Members
AbstractColumn.DisplayName
AbstractColumn.SubSystem
AbstractColumn.Values
AbstractColumn.IsListOfValues
AbstractColumn.IsMultiValued
AbstractColumn.IsCaseSensitive
AbstractColumn.IsGroupable
AbstractColumn.IsEvaluable
AbstractColumn.IsHidden
AbstractColumn.ValueType
AbstractColumn.OriginalDisplayName
AbstractColumn.InternalName
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 TimeStatsDataColumn : AbstractColumn

Properties

Columns

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

Column descriptors for the TIMESTATS result.

PartialResults

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

True if query did not complete processing all data.

Result

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

Results of the TIMESTATS command.

ResultCount

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

Number of timeseries returned by the query.

TotalCount

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

Number of timeseries retrieved by the query.

In this article
Back to top