Github user joshelser commented on a diff in the pull request: https://github.com/apache/phoenix/pull/311#discussion_r203446592 --- Diff: phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/TraceServlet.java --- @@ -42,14 +45,21 @@ private static Connection con; protected String DEFAULT_LIMIT = "25"; protected String DEFAULT_COUNTBY = "hostname"; + protected String DEFAULT_DESCRIPTION = "description"; protected String LOGIC_AND = "AND"; protected String LOGIC_OR = "OR"; protected String TRACING_TABLE = "SYSTEM.TRACING_STATS"; - + @Override + public void init() { + org.apache.hadoop.conf.Configuration conf = HBaseConfiguration.create(); --- End diff -- Import `org.apache.hadoop.conf.Configuration` please.
---