Show / Hide Table of Contents

Class ClassifyColumn

Column containing query results produced by the query language classify command.

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

Properties

ClassifyAnomalyIntervalCounts

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

Count of anomalies for each timeseries datapoint.

ClassifyColumns

Declaration
[JsonProperty(PropertyName = "classifyColumns")]
public List<AbstractColumn> ClassifyColumns { get; set; }
Property Value
Type Description
List<AbstractColumn>

Column descriptors for the classify result.

ClassifyCorrelateColumns

Declaration
[JsonProperty(PropertyName = "classifyCorrelateColumns")]
public List<AbstractColumn> ClassifyCorrelateColumns { get; set; }
Property Value
Type Description
List<AbstractColumn>

Column descriptors of fields with strong correlation with the classify fields.

ClassifyCorrelateResult

Declaration
[JsonProperty(PropertyName = "classifyCorrelateResult")]
public List<Dictionary<string, object>> ClassifyCorrelateResult { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Correlation results of the classify command.

ClassifyFieldNames

Declaration
[JsonProperty(PropertyName = "classifyFieldNames")]
public List<string> ClassifyFieldNames { get; set; }
Property Value
Type Description
List<string>

A list of fields specified in the classify command in the query string.

ClassifyFieldNullCount

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

Count of nulls found in each of the fields specified in the classify command in the query string.

ClassifyResult

Declaration
[JsonProperty(PropertyName = "classifyResult")]
public List<Dictionary<string, object>> ClassifyResult { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Results of the classify command.

In this article
Back to top