Rename port stats names to begin with send/receive

This will hopefully make it quicker and easier for the user to find
the stats item of interest.
This commit is contained in:
Srivats P 2023-03-04 15:31:24 +05:30
parent d950432bc9
commit 425e4ef261

View File

@ -79,18 +79,19 @@ typedef enum {
static const QStringList PortStatName = (QStringList() static const QStringList PortStatName = (QStringList()
<< "Status" << "Status"
<< "Frames Sent" << "Sent Frames"
<< "Frames Received" << "Received Frames"
<< "Bytes Sent" << "Sent Bytes"
<< "Bytes Received" << "Received Bytes"
<< "Frame Send Rate (fps)"
<< "Frame Receive Rate (fps)" << "Send Frame Rate (fps)"
<< "Receive Frame Rate (fps)"
#if 0 #if 0
<< "Byte Send Rate (Bps)" << "Send Byte Rate (Bps)"
<< "Byte Receive Rate (Bps)" << "Receive Byte Rate (Bps)"
#endif #endif
<< "Bit Send Rate (bps)" << "Send Bit Rate (bps)"
<< "Bit Receive Rate (bps)" << "Receive Bit Rate (bps)"
#if 0 #if 0
<< "Frames Received (NIC)" << "Frames Received (NIC)"
<< "Frames Sent (NIC)" << "Frames Sent (NIC)"