Show / Hide Table of Contents

Class TimeColumn

Time column returned when the shape of a queries results contsin a time series.

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

Properties

Span

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

Time span between each series data point.

Times

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

List of timestamps that represent each time stamp in the entire time series even if certain intervals are filtered out of query results.

In this article
Back to top