This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new f7ae59d83de branch-4.0: [fix](metrics) Fix wrong metrics #60196
(#60216)
f7ae59d83de is described below
commit f7ae59d83dee830e1e38d664147708141f4f04e8
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 26 16:01:50 2026 +0800
branch-4.0: [fix](metrics) Fix wrong metrics #60196 (#60216)
Cherry-picked from #60196
Co-authored-by: Gabriel <[email protected]>
---
be/src/runtime/workload_group/workload_group_metrics.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/runtime/workload_group/workload_group_metrics.cpp
b/be/src/runtime/workload_group/workload_group_metrics.cpp
index 2a34427a490..a7d68e5fe2d 100644
--- a/be/src/runtime/workload_group/workload_group_metrics.cpp
+++ b/be/src/runtime/workload_group/workload_group_metrics.cpp
@@ -119,7 +119,7 @@ int64_t
WorkloadGroupMetrics::get_local_scan_bytes_per_second() {
}
int64_t WorkloadGroupMetrics::get_remote_scan_bytes_per_second() {
- return _last_remote_scan_bytes.load();
+ return _per_sec_remote_scan_bytes.load();
}
int64_t WorkloadGroupMetrics::get_memory_used() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]