pub struct Networking {Show 34 fields
pub rdma_protection_errors: Option<i64>,
pub rdma_protocol_errors: Option<i64>,
pub rdmarx_bytes: Option<i64>,
pub rdmarx_requests: Option<i64>,
pub rdmatx_bytes: Option<i64>,
pub rdmatx_read_requests: Option<i64>,
pub rdmatx_requests: Option<i64>,
pub rdmatx_send_requests: Option<i64>,
pub rdmatx_write_requests: Option<i64>,
pub rx_broadcast_frames: Option<i64>,
pub rx_discards: Option<i64>,
pub rxfcs_errors: Option<i64>,
pub rx_false_carrier_errors: Option<i64>,
pub rx_frame_alignment_errors: Option<i64>,
pub rx_frames: Option<i64>,
pub rx_multicast_frames: Option<i64>,
pub rx_oversize_frames: Option<i64>,
pub rxpfc_frames: Option<i64>,
pub rx_pause_xoff_frames: Option<i64>,
pub rx_pause_xon_frames: Option<i64>,
pub rx_undersize_frames: Option<i64>,
pub rx_unicast_frames: Option<i64>,
pub tx_broadcast_frames: Option<i64>,
pub tx_discards: Option<i64>,
pub tx_excessive_collisions: Option<i64>,
pub tx_frames: Option<i64>,
pub tx_late_collisions: Option<i64>,
pub tx_multicast_frames: Option<i64>,
pub tx_multiple_collisions: Option<i64>,
pub txpfc_frames: Option<i64>,
pub tx_pause_xoff_frames: Option<i64>,
pub tx_pause_xon_frames: Option<i64>,
pub tx_single_collisions: Option<i64>,
pub tx_unicast_frames: Option<i64>,
}
Expand description
The port metrics for network ports, including Ethernet, Fibre Channel, and InfiniBand, that are not specific to one of these protocols.
Fields§
§rdma_protection_errors: Option<i64>
The total number of RDMA protection errors.
rdma_protocol_errors: Option<i64>
The total number of RDMA protocol errors.
rdmarx_bytes: Option<i64>
The total number of RDMA bytes received on a port since reset.
rdmarx_requests: Option<i64>
The total number of RDMA requests received on a port since reset.
rdmatx_bytes: Option<i64>
The total number of RDMA bytes transmitted on a port since reset.
rdmatx_read_requests: Option<i64>
The total number of RDMA read requests transmitted on a port since reset.
rdmatx_requests: Option<i64>
The total number of RDMA requests transmitted on a port since reset.
rdmatx_send_requests: Option<i64>
The total number of RDMA send requests transmitted on a port since reset.
rdmatx_write_requests: Option<i64>
The total number of RDMA write requests transmitted on a port since reset.
rx_broadcast_frames: Option<i64>
The total number of valid broadcast frames received on a port since reset.
rx_discards: Option<i64>
The total number of frames discarded in a port’s receive path since reset.
rxfcs_errors: Option<i64>
The total number of frames received with frame check sequence (FCS) errors on a port since reset.
rx_false_carrier_errors: Option<i64>
The total number of false carrier errors received from phy on a port since reset.
rx_frame_alignment_errors: Option<i64>
The total number of frames received with alignment errors on a port since reset.
rx_frames: Option<i64>
The total number of frames received on a port since reset.
rx_multicast_frames: Option<i64>
The total number of valid multicast frames received on a port since reset.
rx_oversize_frames: Option<i64>
The total number of frames that exceed the maximum frame size.
rxpfc_frames: Option<i64>
The total number of priority flow control (PFC) frames received on a port since reset.
rx_pause_xoff_frames: Option<i64>
The total number of flow control frames from the network to pause transmission.
rx_pause_xon_frames: Option<i64>
The total number of flow control frames from the network to resume transmission.
rx_undersize_frames: Option<i64>
The total number of frames that are smaller than the minimum frame size of 64 bytes.
rx_unicast_frames: Option<i64>
The total number of valid unicast frames received on a port since reset.
tx_broadcast_frames: Option<i64>
The total number of good broadcast frames transmitted on a port since reset.
tx_discards: Option<i64>
The total number of frames discarded in a port’s transmit path since reset.
tx_excessive_collisions: Option<i64>
The number of times a single transmitted frame encountered more than 15 collisions.
tx_frames: Option<i64>
The total number of frames transmitted on a port since reset.
tx_late_collisions: Option<i64>
The total number of collisions that occurred after one slot time as defined by IEEE 802.3.
tx_multicast_frames: Option<i64>
The total number of good multicast frames transmitted on a port since reset.
tx_multiple_collisions: Option<i64>
The times that a transmitted frame encountered 2-15 collisions.
txpfc_frames: Option<i64>
The total number of priority flow control (PFC) frames sent on a port since reset.
tx_pause_xoff_frames: Option<i64>
The total number of XOFF frames transmitted to the network.
tx_pause_xon_frames: Option<i64>
The total number of XON frames transmitted to the network.
tx_single_collisions: Option<i64>
The times that a successfully transmitted frame encountered a single collision.
tx_unicast_frames: Option<i64>
The total number of good unicast frames transmitted on a port since reset.
Trait Implementations§
Source§impl Clone for Networking
impl Clone for Networking
Source§fn clone(&self) -> Networking
fn clone(&self) -> Networking
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more