{% if report.total_locally_managed_servers is defined and report.total_locally_managed_servers is not none %}
{{ _('Locally Managed Servers') }}: {{report.total_locally_managed_servers}}
| {{ _('Name') }} |
{{ _('Type') }} |
{{ _('Host:Port') }} |
{{ _('Platform') }} |
{{ _('Cores') }} |
{{ _('Total RAM (MB)') }} |
{% set ns = namespace (core_count = 0, ram_count = 0) %}
{% for server in report.servers %}
{% if server.is_remote_monitoring == false and server.aid is not none %}
{% set ns.core_count = ns.core_count + server.cpu_cores %}
{% set ns.ram_count = ns.ram_count + server.total_ram_memory_mb %}
| {{ server.name }} |
{{ server.server_type }} |
{{ server.host }}:{{ server.port }} |
{{ server.platform|capitalize }} |
{{ server.cpu_cores }} |
{{ server.total_ram_memory_mb }} |
{% endif %}
{% endfor %}
|
|
|
|
{{ ns.core_count }} |
{{ ns.ram_count }} |
{% endif %}
{% if report.total_remotely_managed_servers is defined and report.total_remotely_managed_servers is not none %}
{{ _('Remotely Managed Servers') }}: {{report.total_remotely_managed_servers}}
| {{ _('Name') }} |
{{ _('Type') }} |
{{ _('Host:Port') }} |
{% for server in report.servers %}
{% if server.is_remote_monitoring %}
| {{ server.name }} |
{{ server.server_type }} |
{{ server.host }}:{{ server.port }} |
{% endif %}
{% endfor %}
{% endif %}
{% if report.total_unmanaged_servers is defined and report.total_unmanaged_servers is not none %}
{{ _('Unmanaged Servers') }}: {{report.total_unmanaged_servers}}
| {{ _('Name') }} |
{{ _('Host:Port') }} |
{% for server in report.servers %}
{% if server.aid is none %}
| {{ server.name }} |
{{ server.host }}: {{ server.port }} |
{% endif %}
{% endfor %}
{% endif %}