+
+
Packets Received
+
{selectedInterface.packets_recv?.toLocaleString() || "N/A"}
+
+
+
Packets Sent
+
{selectedInterface.packets_sent?.toLocaleString() || "N/A"}
+
+
+
Errors In
+
{selectedInterface.errors_in || 0}
+
+
+
Errors Out
+
{selectedInterface.errors_out || 0}
+
+
+
Drops In
+
{selectedInterface.drops_in || 0}
+
+
+
Drops Out
+
{selectedInterface.drops_out || 0}
+
+ {selectedInterface.packet_loss_in !== undefined && (
+
+
Packet Loss In
+
1 ? "text-red-500" : "text-green-500"}`}
+ >
+ {selectedInterface.packet_loss_in}%
+
+
+ )}
+ {selectedInterface.packet_loss_out !== undefined && (
+
+
Packet Loss Out
+
1 ? "text-red-500" : "text-green-500"}`}
+ >
+ {selectedInterface.packet_loss_out}%
+
+
+ )}
+