You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{Name: "MTU", Description: "Maximum Transmission Unit. The largest size packet or frame, specified in octets (eight-bit bytes), that can be sent in a packet- or frame-based network such as the Internet."},
1637
+
{Name: "TX Queues"},
1638
+
{Name: "RX Queues"},
1629
1639
{Name: "IRQBalance", Description: "System level setting. Dynamically monitors system activity and spreads IRQs across available cores, aiming to balance CPU load, improve throughput, and reduce latency for interrupt-heavy workloads."},
1630
1640
{Name: "Adaptive RX", Description: "Enables dynamic adjustment of receive interrupt coalescing based on traffic patterns."},
1631
1641
{Name: "Adaptive TX", Description: "Enables dynamic adjustment of transmit interrupt coalescing based on traffic patterns."},
// Find the maximum number of queues across all NICs for both TX and RX
1693
+
maxNumQueues:=0
1694
+
for_, nicInfo:=rangeallNicsInfo {
1695
+
txq, err:=strconv.Atoi(nicInfo.TXQueues)
1696
+
iferr==nil&&txq>maxNumQueues {
1697
+
maxNumQueues=txq
1698
+
}
1699
+
rxq, err:=strconv.Atoi(nicInfo.RXQueues)
1700
+
iferr==nil&&rxq>maxNumQueues {
1701
+
maxNumQueues=rxq
1702
+
}
1703
+
}
1704
+
1705
+
fields:= []Field{
1706
+
{Name: "Interface"},
1707
+
{Name: "Type", Description: "XPS (Transmit Packet Steering) and RPS (Receive Packet Steering) are software-based mechanisms that allow the selection of a specific CPU core to handle the transmission or processing of network packets for a given queue."},
0 commit comments