From f1dce4a2286faebf163dd10c6c58c528979bf283 Mon Sep 17 00:00:00 2001 From: ahassam Date: Tue, 10 Mar 2026 12:40:54 -0700 Subject: [PATCH] do-agent: allow additonal AMD metrics As part of, IN-6633, we require additional metrics to be available via do-agent. Most were already being scraped, but a handful were not. --- cmd/do-agent/aggregation.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/do-agent/aggregation.go b/cmd/do-agent/aggregation.go index 9548dcd..deeb687 100644 --- a/cmd/do-agent/aggregation.go +++ b/cmd/do-agent/aggregation.go @@ -177,7 +177,10 @@ var gpuAggregationSpec = map[string][]string{ // PCIe bandwidth "amd_pcie_bandwidth": amdAggregatedLabels, + "amd_gpu_ecc_correct_total": amdAggregatedLabels, "amd_gpu_ecc_uncorrect_total": amdAggregatedLabels, + "amd_pcie_nack_sent_count": amdAggregatedLabels, + "amd_pcie_nack_received_count": amdAggregatedLabels, "amd_pcie_replay_count": amdAggregatedLabels, "amd_pcie_recovery_count": amdAggregatedLabels, "amd_pcie_replay_rollover_count": amdAggregatedLabels,