akshayrai opened a new pull request #3463: [TE] Implement Threshold based Time Window Suppressor URL: https://github.com/apache/incubator-pinot/pull/3463 Changes: * Implemented a suppressor that can suppress anomalies generated during specific time periods based on some optional thresholds. * Detection alert config sample: ``` { "id": 1234, ... "alertSuppressors": { "timeWindowSuppressor" : { "className": "com.linkedin.thirdeye.detection.alert.suppress.DetectionAlertTimeWindowSuppressor", "timeWindows": [ { "windowStartTime": 1540046543000, "windowEndTime":1542046543000, "isThresholdApplied": true, "expectedChange": -0.5, "acceptableDeviation": 0.1 }, { "windowStartTime": 1535046543000, "windowEndTime":1536046543000, "isThresholdApplied": false } ] } }, ... } ``` * Included unit tests
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
