{% extends "base.html" %} {% block title %} System {% endblock %} {% block breadcrumb %}
  • System
  • {% endblock %} {% block header %} {% endblock %} {% block content %}
    {% if 'memory' in active_checks %}

    Memory

    {% if checks.memory.clone().count() > 0 %}
    {% else %}
    No data
    {% endif %}{# count #} {% endif %}{# memory in active_checks #} {% if 'loadavg' in active_checks %}

    Load Average

    {% if checks.loadavg.clone().count() > 0 %}
    {% else %}
    No data
    {% endif %}{# count #} {% endif %}{# loadavg in active_checks #} {% if 'cpu' in active_checks %}

    CPU

    {% if checks.cpu.clone().count() > 0 %}
    {% else %}
    No data
    {% endif %}{# count #} {% endif %}{# cpu in active_checks #} {% if 'network' in active_checks %} {% if network_interfaces %}

    Network

    {% for interface in network_interfaces %} {% if checks.network.clone().count() > 0 %} {% if interface != 'lo' %}

    {{ interface }}

    {% endif %}{# lo #} {% else %}
    No data
    {% endif %}{# count #} {% endfor %} {% endif %} {% endif %} {% if 'disk' in active_checks %}

    Disk

    {% for volume in volumes %} {% if checks.disk.clone().count() > 0 %}

    {{ volume }}

    {% else %}
    No data
    {% endif %}{# count #} {% endfor %} {% endif %} {% endblock %} {% block js %} {% endblock %}