Uses of Class
com.azure.ai.metricsadvisor.administration.models.AnomalyDetectorDirection
Packages that use AnomalyDetectorDirection
Package
Description
Package containing model types for Metrics Advisor administration operations.
-
Uses of AnomalyDetectorDirection in com.azure.ai.metricsadvisor.administration.models
Fields in com.azure.ai.metricsadvisor.administration.models declared as AnomalyDetectorDirectionModifier and TypeFieldDescriptionstatic final AnomalyDetectorDirectionAnomalyDetectorDirection.BOTHStatic value Both for AnomalyDetectorDirection.static final AnomalyDetectorDirectionAnomalyDetectorDirection.DOWNStatic value Down for AnomalyDetectorDirection.static final AnomalyDetectorDirectionAnomalyDetectorDirection.UPStatic value Up for AnomalyDetectorDirection.Methods in com.azure.ai.metricsadvisor.administration.models that return AnomalyDetectorDirectionModifier and TypeMethodDescriptionstatic AnomalyDetectorDirectionAnomalyDetectorDirection.fromString(String name) Creates or finds a AnomalyDetectorDirection from its string representation.ChangeThresholdCondition.getAnomalyDetectorDirection()Gets the direction that detector should use when comparing the data point change with change threshold.HardThresholdCondition.getAnomalyDetectorDirection()Gets the direction that detector should use when comparing data point value against lowerBound and/or upperBound.SmartDetectionCondition.getAnomalyDetectorDirection()Gets the direction that detector should use when comparing data point value against range derived from sensitivity .Methods in com.azure.ai.metricsadvisor.administration.models that return types with arguments of type AnomalyDetectorDirectionModifier and TypeMethodDescriptionstatic Collection<AnomalyDetectorDirection> AnomalyDetectorDirection.values()Returns the known AnomalyDetectorDirection values.Methods in com.azure.ai.metricsadvisor.administration.models with parameters of type AnomalyDetectorDirectionModifier and TypeMethodDescriptionChangeThresholdCondition.setAnomalyDetectorDirection(AnomalyDetectorDirection detectorDirection) Sets the direction that detector should use when comparing the data point change with change threshold.HardThresholdCondition.setAnomalyDetectorDirection(AnomalyDetectorDirection detectorDirection) Sets the direction that detector should use when comparing data point value against lowerBound and/or upperBound.SmartDetectionCondition.setAnomalyDetectorDirection(AnomalyDetectorDirection detectorDirection) Sets the direction that detector should use when comparing data point value against range derived from the sensitivity.Constructors in com.azure.ai.metricsadvisor.administration.models with parameters of type AnomalyDetectorDirectionModifierConstructorDescriptionChangeThresholdCondition(double changePercentage, int shiftPoint, boolean isWithinRage, AnomalyDetectorDirection detectorDirection, SuppressCondition suppressCondition) Create an instance of ChangeThresholdCondition describing how to identify anomalies using change-threshold mode.HardThresholdCondition(AnomalyDetectorDirection detectorDirection, SuppressCondition suppressCondition) Create an instance of HardThresholdCondition describing how to identify anomalies using hard-threshold mode.SmartDetectionCondition(double sensitivity, AnomalyDetectorDirection detectorDirection, SuppressCondition suppressCondition) Create an instance of SmartDetectionCondition describing how to identify anomalies using smart-detection mode.