Show / Hide Table of Contents

Class TimeClusterColumn

Column returned by querylanguage TIMECLUSTER command.

Inheritance
object
AbstractColumn
TimeClusterColumn
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 TimeClusterColumn : AbstractColumn

Properties

Clusters

Declaration
[JsonProperty(PropertyName = "clusters")]
public Dictionary<string, TimeStatsCluster> Clusters { get; set; }
Property Value
Type Description
Dictionary<string, TimeStatsCluster>

Timeseries clusters identified by the command.

GroupByColumns

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

Group by columns specified in the command.

IntervalGap

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

Time span between each timestamp in the timeseries datapoints.

Intervals

Declaration
[JsonProperty(PropertyName = "intervals")]
public List<long> Intervals { get; set; }
Property Value
Type Description
List<long>

List of timestamps making up the timeseries datapoints.

Series

Declaration
[JsonProperty(PropertyName = "series")]
public List<TimeClusterDataColumn> Series { get; set; }
Property Value
Type Description
List<TimeClusterDataColumn>

List of series data sets for each statistical function specified in the command.

In this article
Back to top