You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bb...@apache.org on 2023/08/04 12:50:17 UTC

[hbase] branch master updated: HBASE-27956 Support wall clock profiling in ProfilerServlet (#5337)

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

bbeaudreault pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ddc6dd70f3 HBASE-27956 Support wall clock profiling in ProfilerServlet (#5337)
3ddc6dd70f3 is described below

commit 3ddc6dd70f3a9aa28338f43036db0bfd99bd0bad
Author: Bryan Beaudreault <bb...@apache.org>
AuthorDate: Fri Aug 4 08:50:10 2023 -0400

    HBASE-27956 Support wall clock profiling in ProfilerServlet (#5337)
    
    Signed-off-by: Reid Chan <re...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/http/ProfileServlet.java       | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hbase-http/src/main/java/org/apache/hadoop/hbase/http/ProfileServlet.java b/hbase-http/src/main/java/org/apache/hadoop/hbase/http/ProfileServlet.java
index 2d87a2b3f26..86f58c25bff 100644
--- a/hbase-http/src/main/java/org/apache/hadoop/hbase/http/ProfileServlet.java
+++ b/hbase-http/src/main/java/org/apache/hadoop/hbase/http/ProfileServlet.java
@@ -74,6 +74,7 @@ public class ProfileServlet extends HttpServlet {
 
   enum Event {
     CPU("cpu"),
+    WALL("wall"),
     ALLOC("alloc"),
     LOCK("lock"),
     PAGE_FAULTS("page-faults"),