{% extends "reports/base.html" %} {% block content %}
| Hostname | Avg CPU % | Peak CPU % | Avg Memory % | Peak Memory % | Avg Disk % | Avg Temp | Data Points |
|---|---|---|---|---|---|---|---|
| {{ device.hostname }} | 80 %} style="color: #991B1B; font-weight: 600;"{% elif device.avg_cpu and device.avg_cpu > 50 %} style="color: #92400E;"{% endif %}> {{ '%.1f' | format(device.avg_cpu) if device.avg_cpu is not none else '-' }} | {{ '%.1f' | format(device.peak_cpu) if device.peak_cpu is not none else '-' }} | 80 %} style="color: #991B1B; font-weight: 600;"{% elif device.avg_mem and device.avg_mem > 50 %} style="color: #92400E;"{% endif %}> {{ '%.1f' | format(device.avg_mem) if device.avg_mem is not none else '-' }} | {{ '%.1f' | format(device.peak_mem) if device.peak_mem is not none else '-' }} | {{ '%.1f' | format(device.avg_disk) if device.avg_disk is not none else '-' }} | {{ '%.1f' | format(device.avg_temp) if device.avg_temp is not none else '-' }} | {{ device.data_points }} |