Fix network table in/out to be from node perspective

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-29 11:02:15 -08:00
parent 8ea593625a
commit b5e8bda1c4

View File

@@ -2522,10 +2522,10 @@
upstream,
speed,
speedStr,
inErrors: errors.in,
outErrors: errors.out,
inRate: rates.inBytes,
outRate: rates.outBytes,
inErrors: errors.out,
outErrors: errors.in,
inRate: rates.outBytes,
outRate: rates.inBytes,
status: isUnreachable ? 'unreachable' : (errors.in + errors.out > 0 ? 'errors' : 'ok')
};
});