You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Right now Anomaly Checks only return a success or fail response, but I'd like to retrieve the thresholds used in the Anomaly Strategy calculations. This would help DeeQu users clearly see what numbers the Anomaly Check actually used for the calculation.
Describe the solution you'd like
I'd like to have the Constraint Result return a field that contains thresholds used in the Anomaly Strategy. I'm also planning to make a pull request to implement this feature, and would love to hear your feedback on that.
Describe alternatives you've considered
N/A
Additional context
My current plan for implementing this feature is as follows:
isNewestPointNonAnomalous function currently is an assertion function that takes in a Double metric and returns a Boolean of if there are anomalies detected. Change this function to return an AnomalyAssertionResult which contains a Boolean and also Doubles to represent thresholds used in the Anomaly Strategy calculations.
Create an AnomalyBasedConstraint where the pickValueAndAssert function will retrieve the Boolean from the anomalyAssertionResult.
Create an AnomalyConstraintResult with a field (or fields) for those thresholds, where the pickValueAndAssert function passes in those thresholds from the anomalyAssertionResult. Now the user can view the results.
Is your feature request related to a problem? Please describe.
Right now Anomaly Checks only return a success or fail response, but I'd like to retrieve the thresholds used in the Anomaly Strategy calculations. This would help DeeQu users clearly see what numbers the Anomaly Check actually used for the calculation.
Describe the solution you'd like
I'd like to have the Constraint Result return a field that contains thresholds used in the Anomaly Strategy. I'm also planning to make a pull request to implement this feature, and would love to hear your feedback on that.
Describe alternatives you've considered
N/A
Additional context
My current plan for implementing this feature is as follows:
The text was updated successfully, but these errors were encountered: