Show / Hide Table of Contents

Class ChartColumn

Column returned by querylanguage link command.

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

Properties

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<ChartDataColumn> Series { get; set; }
Property Value
Type Description
List<ChartDataColumn>

List of series data sets representing various link command results.

TotalIntervalCounts

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

Total matching count for each timeseries datapoint.

In this article
Back to top