public static interface BehaviorCriteria.Builder extends SdkPojo, CopyableBuilder<BehaviorCriteria.Builder,BehaviorCriteria>
| Modifier and Type | Method and Description |
|---|---|
BehaviorCriteria.Builder |
comparisonOperator(ComparisonOperator comparisonOperator)
The operator that relates the thing measured (
metric) to the criteria (containing a
value or statisticalThreshold). |
BehaviorCriteria.Builder |
comparisonOperator(String comparisonOperator)
The operator that relates the thing measured (
metric) to the criteria (containing a
value or statisticalThreshold). |
BehaviorCriteria.Builder |
consecutiveDatapointsToAlarm(Integer consecutiveDatapointsToAlarm)
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm
occurs.
|
BehaviorCriteria.Builder |
consecutiveDatapointsToClear(Integer consecutiveDatapointsToClear)
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.
|
BehaviorCriteria.Builder |
durationSeconds(Integer durationSeconds)
Use this to specify the time duration over which the behavior is evaluated, for those criteria which have a
time dimension (for example,
NUM_MESSAGES_SENT). |
default BehaviorCriteria.Builder |
statisticalThreshold(Consumer<StatisticalThreshold.Builder> statisticalThreshold)
A statistical ranking (percentile) which indicates a threshold value by which a behavior is determined to be
in compliance or in violation of the behavior.
|
BehaviorCriteria.Builder |
statisticalThreshold(StatisticalThreshold statisticalThreshold)
A statistical ranking (percentile) which indicates a threshold value by which a behavior is determined to be
in compliance or in violation of the behavior.
|
default BehaviorCriteria.Builder |
value(Consumer<MetricValue.Builder> value)
The value to be compared with the
metric. |
BehaviorCriteria.Builder |
value(MetricValue value)
The value to be compared with the
metric. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildBehaviorCriteria.Builder comparisonOperator(String comparisonOperator)
The operator that relates the thing measured (metric) to the criteria (containing a
value or statisticalThreshold).
comparisonOperator - The operator that relates the thing measured (metric) to the criteria (containing a
value or statisticalThreshold).ComparisonOperator,
ComparisonOperatorBehaviorCriteria.Builder comparisonOperator(ComparisonOperator comparisonOperator)
The operator that relates the thing measured (metric) to the criteria (containing a
value or statisticalThreshold).
comparisonOperator - The operator that relates the thing measured (metric) to the criteria (containing a
value or statisticalThreshold).ComparisonOperator,
ComparisonOperatorBehaviorCriteria.Builder value(MetricValue value)
The value to be compared with the metric.
value - The value to be compared with the metric.default BehaviorCriteria.Builder value(Consumer<MetricValue.Builder> value)
The value to be compared with the metric.
MetricValue.Builder avoiding the need to create
one manually via MetricValue.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to value(MetricValue).value - a consumer that will call methods on MetricValue.Buildervalue(MetricValue)BehaviorCriteria.Builder durationSeconds(Integer durationSeconds)
Use this to specify the time duration over which the behavior is evaluated, for those criteria which 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.
durationSeconds - Use this to specify the time duration over which the behavior is evaluated, for those criteria which
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.BehaviorCriteria.Builder consecutiveDatapointsToAlarm(Integer consecutiveDatapointsToAlarm)
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.
consecutiveDatapointsToAlarm - 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.BehaviorCriteria.Builder consecutiveDatapointsToClear(Integer consecutiveDatapointsToClear)
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.
consecutiveDatapointsToClear - 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.BehaviorCriteria.Builder statisticalThreshold(StatisticalThreshold statisticalThreshold)
A statistical ranking (percentile) which indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.
statisticalThreshold - A statistical ranking (percentile) which indicates a threshold value by which a behavior is determined
to be in compliance or in violation of the behavior.default BehaviorCriteria.Builder statisticalThreshold(Consumer<StatisticalThreshold.Builder> statisticalThreshold)
A statistical ranking (percentile) which indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.
This is a convenience that creates an instance of theStatisticalThreshold.Builder avoiding the need
to create one manually via StatisticalThreshold.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to statisticalThreshold(StatisticalThreshold).statisticalThreshold - a consumer that will call methods on StatisticalThreshold.BuilderstatisticalThreshold(StatisticalThreshold)Copyright © 2019. All rights reserved.