{% if not is_xhr|default(false) %}{% extends "base.html" %}{% endif -%} {% block content %}
Network
{% for io in network_interfaces %} {% endfor %}
Interface IP Bytes sent Bytes recv Packets sent Packets recv Errors in Errors out Dropped in Dropped out RX/s TX/s
{{ io.name }} {{ io.ip }} {{ io.bytes_sent }} {{ io.bytes_recv }} {{ io.packets_sent }} {{ io.packets_recv }} {{ io.errin }} {{ io.errout }} {{ io.dropin }} {{ io.dropout }} {{ io.rx_per_sec|default(0)|filesizeformat }} {{ io.tx_per_sec|default(0)|filesizeformat }}
Connections Listing {{ num_conns }} connections
{% for c in net_connections %} {% endfor %}
FD PID Family Type Local address Remote address State
{{ c.fd if c.fd > 0 else "-" }} {% if c.pid %} {{ c.pid }} {% else %} - {% endif %} {{ socket_families[c.family] }} {{ socket_types[c.type] }} {% if c.laddr[0] and c.laddr[1] %} {{ c.laddr[0] }}:{{ c.laddr[1] }} {% else %} - {% endif %} {% if c.raddr[0] and c.raddr[1] %} {{ c.raddr[0] }}:{{ c.raddr[1] }} {% else %} - {% endif %} {{ c.status }}
{% endblock %}