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 a7a927f  [TE] tracking - increase datasource performance output (#3615)
a7a927f is described below

commit a7a927f2f60b9ddf4ebd036ee52e815fe2ac1ef2
Author: Alexander Pucher <[email protected]>
AuthorDate: Thu Dec 13 16:26:58 2018 -0800

    [TE] tracking - increase datasource performance output (#3615)
---
 .../linkedin/thirdeye/tracking/RequestStatisticsFormatter.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/thirdeye/thirdeye-pinot/src/main/java/com/linkedin/thirdeye/tracking/RequestStatisticsFormatter.java
 
b/thirdeye/thirdeye-pinot/src/main/java/com/linkedin/thirdeye/tracking/RequestStatisticsFormatter.java
index 3594088..c92c9c1 100644
--- 
a/thirdeye/thirdeye-pinot/src/main/java/com/linkedin/thirdeye/tracking/RequestStatisticsFormatter.java
+++ 
b/thirdeye/thirdeye-pinot/src/main/java/com/linkedin/thirdeye/tracking/RequestStatisticsFormatter.java
@@ -26,7 +26,7 @@ import java.util.Objects;
 
 
 public class RequestStatisticsFormatter {
-  private static final int TOP_K = 10;
+  private static final int TOP_K = 20;
 
   private static final Comparator<Map.Entry<String, Long>> COMP_LONG = new 
Comparator<Map.Entry<String, Long>>() {
     @Override
@@ -42,10 +42,10 @@ public class RequestStatisticsFormatter {
     }
   };
 
-  private static final int MAX_KEY_LEN = 50;
-  private static final String FORMAT_LONG = "  %-50s %10d\n";
-  private static final String FORMAT_DURATION = "  %-50s %10.0f\n";
-  private static final String FORMAT_RATE = "  %-50s %10.3f\n";
+  private static final int MAX_KEY_LEN = 80;
+  private static final String FORMAT_LONG = "  %-80s %10d\n";
+  private static final String FORMAT_DURATION = "  %-80s %10.0f\n";
+  private static final String FORMAT_RATE = "  %-80s %10.3f\n";
 
   public String format(RequestStatistics stats) {
     StringBuilder builder = new StringBuilder();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to