diff --git a/internal/alerts/alerts_system.go b/internal/alerts/alerts_system.go index 63ae5d1c..817222dc 100644 --- a/internal/alerts/alerts_system.go +++ b/internal/alerts/alerts_system.go @@ -38,7 +38,7 @@ func (am *AlertManager) HandleSystemAlerts(systemRecord *core.Record, data *syst case "Memory": val = data.Info.MemPct case "Bandwidth": - val = data.Info.Bandwidth + val = float64(data.Info.BandwidthBytes) / (1024 * 1024) unit = " MB/s" case "Disk": maxUsedPct := data.Info.DiskPct