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

lupeng pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new ab4e33f734d HBASE-29777 Slow and Large Response RPC StartTime in 
SlowLog Operation Details page is incorrect (#7858)
ab4e33f734d is described below

commit ab4e33f734dbafeeca6ce960091b5beee86195ae
Author: Liu Xiao <[email protected]>
AuthorDate: Sat Mar 7 20:29:01 2026 +0800

    HBASE-29777 Slow and Large Response RPC StartTime in SlowLog Operation 
Details page is incorrect (#7858)
    
    Signed-off-by: Dávid Paksy <[email protected]>
    Signed-off-by: Peng Lu <[email protected]>
    Reviewed-by: Vaibhav Joshi <[email protected]>
---
 .../main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
 
b/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
index 87f6cf4f8ae..043368fd1d2 100644
--- 
a/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
+++ 
b/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
@@ -116,7 +116,7 @@
           <% if (slowLogs != null && !slowLogs.isEmpty()) {%>
             <% for (TooSlowLog.SlowLogPayload r : slowLogs) { %>
             <tr>
-             <td><%=new Date(r.getStartTime() + 1800*1000)%></td>
+             <td><%=new Date(r.getStartTime())%></td>
              <td><%=r.getProcessingTime()%>ms</td>
              <td><%=r.getQueueTime()%>ms</td>
              <td><%=r.getFsReadTime()%>ms</td>
@@ -165,7 +165,7 @@
           <% if (largeLogs != null && !largeLogs.isEmpty()) {%>
             <% for (TooSlowLog.SlowLogPayload r : largeLogs) { %>
             <tr>
-             <td><%=new Date(r.getStartTime() + 1800*1000)%></td>
+             <td><%=new Date(r.getStartTime())%></td>
              <td><%=r.getProcessingTime()%>ms</td>
              <td><%=r.getQueueTime()%>ms</td>
              <td><%=r.getFsReadTime()%>ms</td>

Reply via email to