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

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


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

commit 956b159129d116ce1d09e10c75da8080a87f74b3
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 8af49957cf1..824aa29bcec 100644
--- 
a/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
+++ 
b/hbase-server/src/main/resources/hbase-webapps/regionserver/rsOperationDetails.jsp
@@ -111,7 +111,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><%=StringUtils.byteDesc(r.getResponseSize())%></td>
@@ -152,7 +152,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><%=StringUtils.byteDesc(r.getResponseSize())%></td>

Reply via email to