Github user kkhatua commented on a diff in the pull request:

    https://github.com/apache/drill/pull/756#discussion_r103032276
  
    --- Diff: 
exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/profile/OperatorWrapper.java
 ---
    @@ -179,12 +207,47 @@ public String getMetricsTable() {
           }
           for (final Number value : values) {
             if (value != null) {
    -          builder.appendFormattedNumber(value, null);
    +          builder.appendFormattedNumber(value);
             } else {
    -          builder.appendCell("", null);
    +          builder.appendCell("");
             }
           }
         }
         return builder.build();
       }
    +
    +  private class OverviewTblTxt {
    +    static final String OperatorID = "Operator ID";
    +    static final String Type = "Type";
    +    static final String AvgSetupTime = "Avg Setup Time";
    +    static final String MaxSetupTime = "Max Setup Time";
    +    static final String AvgProcessTime = "Avg Process Time";
    +    static final String MaxProcessTime = "Max Process Time";
    +    static final String MinWaitTime = "Min Wait Time";
    +    static final String AvgWaitTime = "Avg Wait Time";
    +    static final String MaxWaitTime = "Max Wait Time";
    +    static final String PercentFragmentTime = "% Fragment Time";
    +    static final String PercentQueryTime = "% Query Time";
    +    static final String Rows = "Rows";
    +    static final String AvgPeakMemory = "Avg Peak Memory";
    +    static final String MaxPeakMemory = "Max Peak Memory";
    +  }
    +
    +  private class OverviewTblTooltip {
    +    static final String OperatorID = "Operator ID";
    +    static final String Type = "Operator Type";
    +    static final String AvgSetupTime = "Average Time in setting up 
fragments";
    --- End diff --
    
    +1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to