BehaviorCriteria class

The criteria by which the behavior is determined to be normal.

Constructors

BehaviorCriteria({ComparisonOperator? comparisonOperator, int? consecutiveDatapointsToAlarm, int? consecutiveDatapointsToClear, int? durationSeconds, MachineLearningDetectionConfig? mlDetectionConfig, StatisticalThreshold? statisticalThreshold, MetricValue? value})
BehaviorCriteria.fromJson(Map<String, dynamic> json)
factory

Properties

comparisonOperator ComparisonOperator?
The operator that relates the thing measured (metric) to the criteria (containing a value or statisticalThreshold). Valid operators include:
final
consecutiveDatapointsToAlarm int?
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.
final
consecutiveDatapointsToClear int?
If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.
final
durationSeconds int?
Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, NUM_MESSAGES_SENT). For a statisticalThreshhold metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.
final
hashCode int
The hash code for this object.
no setterinherited
mlDetectionConfig MachineLearningDetectionConfig?
The configuration of an ML Detect
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
statisticalThreshold StatisticalThreshold?
A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.
final
value MetricValue?
The value to be compared with the metric.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited