Show / Hide Table of Contents

Class TimeClusterCommandDescriptor

Command descriptor for querylanguage TIMECLUSTER command.

Inheritance
object
AbstractCommandDescriptor
TimeClusterCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
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 TimeClusterCommandDescriptor : AbstractCommandDescriptor

Properties

Functions

Declaration
[JsonProperty(PropertyName = "functions")]
public List<FunctionField> Functions { get; set; }
Property Value
Type Description
List<FunctionField>

Statistical functions specified in the query string. Atleast 1 is required for a TIMECLUSTER command.

GroupByFields

Declaration
[JsonProperty(PropertyName = "groupByFields")]
public List<AbstractField> GroupByFields { get; set; }
Property Value
Type Description
List<AbstractField>

Group by fields specified in the query string.

Span

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

Option to control the size of buckets in the timeseries. Will be adjusted to a larger span if time range is very large.

Time

Declaration
[JsonProperty(PropertyName = "time")]
public AbstractField Time { get; set; }
Property Value
Type Description
AbstractField

Optional timestamp datatype field if specified. Default field is 'Start Time'.

In this article
Back to top