Skip to content

Commit

Permalink
[fix][worker]:Fix the issue of missing disk usage reporting informati…
Browse files Browse the repository at this point in the history
…on in the worker (apache#15565)

Co-authored-by: Rick Cheng <[email protected]>
  • Loading branch information
JohnZp and rickchengx committed Feb 6, 2024
1 parent 1b32e28 commit 89da67d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public WorkerHeartBeat getHeartBeat() {
.cpuUsage(systemMetrics.getTotalCpuUsedPercentage())
.jvmMemoryUsage(systemMetrics.getJvmMemoryUsedPercentage())
.memoryUsage(systemMetrics.getSystemMemoryUsedPercentage())
.diskUsage(systemMetrics.getDiskUsedPercentage())
.processId(processId)
.workerHostWeight(workerConfig.getHostWeight())
.threadPoolUsage(workerTaskExecutorThreadPool.getRunningTaskExecutorSize()
Expand Down

0 comments on commit 89da67d

Please sign in to comment.