You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xh...@apache.org on 2019/02/22 19:04:13 UTC

[incubator-pinot] branch master updated: only show inconsistent alert when it is daily metrics (#3865)

This is an automated email from the ASF dual-hosted git repository.

xhsun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 23cda0b  only show inconsistent alert when it is daily metrics (#3865)
23cda0b is described below

commit 23cda0bf7c524dbb4ebf947ab5b5853aeecff829
Author: Xiaohui Sun <xh...@linkedin.com>
AuthorDate: Fri Feb 22 11:04:09 2019 -0800

    only show inconsistent alert when it is daily metrics (#3865)
---
 .../app/pods/components/rootcause-anomaly/component.js                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/thirdeye/thirdeye-frontend/app/pods/components/rootcause-anomaly/component.js b/thirdeye/thirdeye-frontend/app/pods/components/rootcause-anomaly/component.js
index f758469..f6a5dde 100644
--- a/thirdeye/thirdeye-frontend/app/pods/components/rootcause-anomaly/component.js
+++ b/thirdeye/thirdeye-frontend/app/pods/components/rootcause-anomaly/component.js
@@ -362,7 +362,7 @@ export default Component.extend({
     function () {
       // Don't show warning when granularity is 1 or 5 minutes, regardless of discrepancy
       const metricGranularity = get(this, 'metricGranularity');
-      if (metricGranularity === '5_MINUTES' || metricGranularity === '1_MINUTES') {
+      if (metricGranularity !== '1_DAYS') {
         return false;
       }
       if(!get(this, 'isRangeChanged')) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org