This is an automated email from the ASF dual-hosted git repository. apucher 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 37ad801 [TE] rootcause - default millisecond datasets to 15min granularity (#3550) 37ad801 is described below commit 37ad801ad65464bd653d6ac03ad255de0322ce60 Author: Alexander Pucher <apuc...@linkedin.com> AuthorDate: Mon Nov 26 15:19:49 2018 -0800 [TE] rootcause - default millisecond datasets to 15min granularity (#3550) --- thirdeye/thirdeye-frontend/app/pods/rootcause/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdeye/thirdeye-frontend/app/pods/rootcause/route.js b/thirdeye/thirdeye-frontend/app/pods/rootcause/route.js index 9aad462..e4ca2d3 100644 --- a/thirdeye/thirdeye-frontend/app/pods/rootcause/route.js +++ b/thirdeye/thirdeye-frontend/app/pods/rootcause/route.js @@ -39,7 +39,7 @@ const adjustGranularity = (attrGranularity) => { const granularity = [parseInt(count, 10), unit]; if (['NANOSECONDS', 'MILLISECONDS', 'SECONDS'].includes(granularity[1])) { - granularity[0] = 5; + granularity[0] = 15; granularity[1] = 'MINUTES'; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org