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:
@@ -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')
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user