On branch BUG/1608_glances-network-error

Changes to be committed:
	modified:   src/components/Widgets/GlNetworkInterfaces.vue
	modified:   src/components/Widgets/GlNetworkTraffic.vue

bug ref: https://github.com/Lissy93/dashy/issues/1608

v4api ref: https://glances.readthedocs.io/en/latest/api.html#get-network
v3api ref: https://github.com/nicolargo/glances/blob/support/glancesv3/docs/api.rst#get-network
This commit is contained in:
hockwill 2024-07-21 22:38:41 -04:00
parent 264cb754cd
commit 55bcadedff
2 changed files with 7 additions and 7 deletions

View File

@ -68,11 +68,11 @@ export default {
networks.push({
name: network.interface_name,
speed: network.speed,
online: network.is_up ? 'up' : 'down',
currentDownload: network.rx,
currentUpload: network.tx,
totalDownload: network.cumulative_rx,
totalUpload: network.cumulative_tx,
online: network.speed ? 'up' : 'down', //v3 to v4 is_up no longer seems to be a default response field
currentDownload: netowkr.bytes_recv,
currentUpload: network.bytes_sent,
totalDownload: network.bytes_recv_gauge,
totalUpload: network.bytes_sent_gauge,
changeDownload: this.previous && network.rx > this.previous[index].rx,
changeUpload: this.previous && network.tx > this.previous[index].tx,
});

View File

@ -33,8 +33,8 @@ export default {
/* eslint-disable prefer-destructuring */
Object.keys(trafficData).forEach((keyName) => {
let upOrDown = null;
if (keyName.includes('_tx')) upOrDown = 'up';
else if (keyName.includes('_rx')) upOrDown = 'down';
if (keyName.includes('_sent')) upOrDown = 'up';
else if (keyName.includes('_recv')) upOrDown = 'down';
trafficData[keyName].forEach((dataPoint) => {
const dataTime = this.getRoundedTime(dataPoint[0]);
if (upOrDown === 'up') {