{% extends "system.html" %} {% load compress static %} {% block extra_head %} {{ block.super }} {% compress js %} {% endcompress %} {% compress css %} {% endcompress %} {% endblock %} {% block main %}

DATABASE SIZE

{{ used_percent }}%
{{ ch_disk_GB|floatformat:2 }} GB
Total disk space
{{ db_total_GB|floatformat:2 }} GB ({{ used_percent }}%)
Used disk space
{{ db_system_GB|floatformat:2 }} GB
Used by this system

CONNECTION SETTINGS {% if request.GET.updated %} Updated {% endif %}

{% if not request.POST and system.status == 'UNREACHABLE' %}
  • System is unreachable - the URL may be wrong.
{% endif %} {% if not request.POST and system.status == 'AUTH FAILED' %}
  • Cannot authenticate - username or password may be wrong.
{% endif %} {% with form=system_form %} {% include "render_form.html" %} {% endwith %}

REESTABLISH CONNECTION {% if messages %} {% for message in messages %} {% if message.level == DEFAULT_MESSAGE_LEVELS.SUCCESS %} {{ message }} {% endif %} {% endfor %} {% endif %}

Reestablish the connection with the monitored machine and update the configuration.
Note: This process may take a few minutes to complete.

{% if messages %}
{% for message in messages %} {% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %} {{ message }} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %}

COLLECT LOGS

Generate an archive of log files for sending to the INFINIDAT support team.
Note: This process may take a few minutes to complete.

Download
{% if system.has_nas_clients_collectors %}

NAS CLIENT PERFORMANCE MONITORING EXPERIMENTAL

This experimental feature enables performance monitoring for NAS clients.
{% if is_power_user %} Notes: Enabling this feature might result in a drastic increase in the local database size.
Refer to the documentation for more details.
Allow up to a minute for this feature state to change, during which all monitoring is paused. {% else %} Only the IMX_ADMIN user can enable or disable this feature. {% endif %}

{{ system.collect_nas_clients|yesno:'Disable,Enable' }}
{% endif %} {% if system.has_collection_settings %}

DATA COLLECTION

{% csrf_token %} {% include "data_collection_table.html" with system_settings_page=True %}
{% endif %} {% if is_system_admin or is_power_user %}

REMOVE SYSTEM

InfiniMetrics will stop monitoring and displaying information about {{ system.name }}.

Remove
{% endif %}
{% endblock %}