{% extends "psutildash/layout.html" %} {% block title %}Network{% endblock %} {% block content %}

Network

{% for interface in interfaces %} {% endfor %}
Interface IP Address Bytes sent Bytes recv Packets sent Packets recv Errors in Errors out Dropped in Dropped out
{{ interface.interface }} {{ interface.ip_address }} {{ interface.bytes_sent }} {{ interface.bytes_recv }} {{ interface.packets_sent }} {{ interface.packets_recv }} {{ interface.errin }} {{ interface.errout }} {{ interface.dropin }} {{ interface.dropout }}

Connections

{% for connection in connections %} {% endfor %}
FD PID Family Type Local Address Remote Address Status
{{ connection.fd }} {{ connection.pid }} {{ connection.family }} {{ connection.type }} {{ connection.laddr }} {{ connection.raddr }} {{ connection.status }}
{% endblock %}