{% extends base_template|default:"handyhelpers/handyhelpers_base.htm" %} {% load static %} {% load handyhelper_tags %} {% block local_head %} {% endblock %} {% block content %}
{% if title or subtitle %}
{{ title }}
{{ subtitle|safe }}
{% endif %}
 
OS and Uptime
Boot Time:
{{ times.boot_time }}
Up Time:
{{ times.up_time }}
System:
{{ platform.sysname }}
Release:
{{ platform.release }}
Version:
{{ platform.version }}
Machine:
{{ platform.machine }}
Hostname:
{{ platform.nodename }}
Memory
Total:
{{ memory.total|byte_size }}({{ memory.total }})
Available:
{{ memory.available|byte_size }}({{ memory.available }})
Used:
{{ memory.used|byte_size }}({{ memory.used }})
Free:
{{ memory.free|byte_size }}({{ memory.free }})
Active:
{{ memory.active|byte_size }}({{ memory.active }})
Inactive:
{{ memory.inactive|byte_size }}({{ memory.inactive }})
Buffers:
{{ memory.buffers|byte_size }}({{ memory.buffers }})
Disk
Total:
{{ disk_usage.total|byte_size }}({{ disk_usage.total }})
Used:
{{ disk_usage.used|byte_size }}({{ disk_usage.used }})
Free:
{{ disk_usage.free|byte_size }}({{ disk_usage.free }})
Read Count:
{{ disk_io_counters.read_count|byte_size }}({{ disk_io_counters.read_count }})
Read Bytes:
{{ disk_io_counters.read_bytes|byte_size }}({{ disk_io_counters.read_bytes }})
Write Count:
{{ disk_io_counters.write_count|byte_size }}({{ disk_io_counters.write_count }})
Write Bytes:
{{ disk_io_counters.write_bytes|byte_size }}({{ disk_io_counters.write_bytes }})
{% endblock content %}