{% extends "_layout.html" %} {% load humanize %} {% block title %}{% if player_name %}{{ player_name }} · {% endif %}System Info{% endblock %} {% block main %}

System Info

Live diagnostics for this player. Refresh the page to update.

Live diagnostics

CPU load, memory and storage updated each refresh.

Load Average

{% for window, label in load.windows %}
{{ label }} {{ window.value }}
{% endfor %}

{% if load.trend == 'up' %}Trending up{% elif load.trend == 'down' %}Cooling off{% else %}Steady{% endif %}

{{ load.cpu_count }} CPU{{ load.cpu_count|pluralize }} · saturation at {{ load.cpu_count }}.0

Uptime

{{ uptime.human }}

Memory

{{ memory.total|intcomma }}
MiB total
  • Used {{ memory.used|intcomma }} MiB · {{ memory.used_pct }}%
  • Buffers / cache {{ memory.cache|intcomma }} MiB · {{ memory.cache_pct }}%
  • Free {{ memory.free|intcomma }} MiB · {{ memory.free_pct }}%
  • Available {{ memory.available|intcomma }} MiB
{% if low_ram.active %}

Low-RAM mode: single-QWebEngineView (no preloaded crossfade), 1080p upload cap on video. Engages below {{ low_ram.threshold_mib|intcomma }} MiB MemTotal.

{% endif %}

Disk

{{ disk.total_human }}
total
  • Used {{ disk.used_human }} · {{ disk.used_pct }}%
  • Free {{ disk.free_human }} · {{ disk.free_pct }}%

Display & hardware

What this player is rendering to and what it's running on.

Device model

{{ device_model }}

Resolution

{{ resolution.value }}
{% if resolution.source == 'live' %}Reported by viewer {% else %}Configured (no viewer report yet){% endif %}
{% include "_stat_card.html" with label="Display Power (CEC)" value=display_power|default:"None" %}

Identity

Anthias build and host network identifiers.

Anthias version

{% if anthias_version_master_link %} {{ anthias_version_head }} {% else %}{{ anthias_version_head }}{% endif %} {% if anthias_version_meta %} {{ anthias_version_meta }} {% endif %} {% if not up_to_date and not is_balena %} Update available {% endif %}

MAC address

{{ mac_address }}
{% endblock %}