Show / Hide Table of Contents

Class LinkCommandDescriptor

Command descriptor for querylanguage LINK command.

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

Properties

ShouldIncludeNulls

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

Option to return groups with a null value if specified.

ShouldIncludeTrends

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

Option to calculate trends of each group 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.

In this article
Back to top