Skip to content

Commit

Permalink
chore(qrm): CheckAllNUMABindingResult add result summary
Browse files Browse the repository at this point in the history
  • Loading branch information
luomingmeng committed Nov 22, 2024
1 parent 6bd13b7 commit 742c5d6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/agent/qrm-plugins/util/numabinding/calculator/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ func CheckAllNUMABindingResult(emitter metrics.MetricEmitter, calculator string,
}
}

general.InfoS("result summary",
"calculator", calculator,
"result", result,
"success", success,
"unSuccessPods", unSuccessPods)

if len(unSuccessPods) > 0 || !success {
general.Errorf("check success failed, unSuccessPods: %v", unSuccessPods)
for _, nn := range unSuccessPods {
Expand Down

0 comments on commit 742c5d6

Please sign in to comment.