Show / Hide Table of Contents

Class ClusterCompareCommandDescriptor

Command descriptor for querylanguage CLUSTERCOMPARE command.

Inheritance
object
AbstractCommandDescriptor
ClusterCompareCommandDescriptor
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 ClusterCompareCommandDescriptor : AbstractCommandDescriptor

Properties

BaselineQuery

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

Query to use to compute base line to compare top level query results against to identify differences if specified.

ShouldIncludeTrends

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

Option to calculate trends of each cluster if specified.

Span

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

Option to control the size of buckets in the histogram e.g 8hrs - each bar other than first and last should represent 8hr time span. Will be adjusted to a larger span if time range is very large.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public long? TimeEnd { get; set; }
Property Value
Type Description
long?

End time to apply to base line query if specified.

TimeShift

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

To shift time range of main query backwards using a relative time expression e.g -24hrs. E.g compare against the previous 24 hrs.

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public long? TimeStart { get; set; }
Property Value
Type Description
long?

Start time to apply to base line query if specified.

In this article
Back to top