{% extends "html/report_base.html" %} {% import 'macros/report_title.macro' as TITLE %} {% set NO_AGENT_SERVER_MSG = _('This group does not have any agent or server.') %} {% set NO_DATA_MSG = _('No data found.') %} {% block title %} {{ _("System Configuration Report") }} {% endblock %} {% block report_header_text %} {{ TITLE.TitleElement("System Configuration Report") }} {%endblock%} {% block loading_text %} {%endblock%} {% block status_element_block %}
| {{ _('Parameter') }} | {{ _('Value') }} |
|---|---|
| {{ _('Name') }} | {{ pem_info.name }} |
| {{ _('Backend version') }} | {{ pem_info.database }} |
| {{ _('App version') }} | {{ pem_info.version }} |
| {{ _('User') }} | {{ pem_info.user }} |
| {{ _('Python version') }} | {{ pem_info.python }} |
| {{ _('Flask version') }} | {{ pem_info.flask }} |
| {{ key|capitalize }} |
{% for key, val in value.items() %}
{{ key|capitalize }}
: {{ val }}
|
| {{ _('Parameter') }} | {{ _('Value') }} |
|---|---|
| {{ _('Agents') }} |
{{ _('Windows') }}
: {{ summary.total_windows_agents }}
{{ _('Linux') }}
: {{ summary.total_unix_linux_agents }}
|
| {{ _('Servers') }} |
{{ _('PG') }}
: {{ summary.total_pg_servers }}
{{ _('EPAS') }}
: {{ summary.total_epas_servers }}
{{ _('Unknown') }}
: {{ summary.total_unknwon_servers }}
{{ _('Locally Managed') }}
: {{ summary.total_locally_monitored_servers }}
{{ _('Remotely Managed') }}
: {{ summary.total_remotely_monitored_servers }}
{{ _('Unmanaged') }}
: {{ summary.total_unmanaged_servers }}
|
|
{{ _('Agent Details') }}
|
||||||||||||||||||||||
|
{% if agent|length > 0 %}
|
||||||||||||||||||||||
|
{{ _('CPU') }}
|
||||||||||||||||||||||
|
{{ _('Total CPU Cores: ') }}
{{agent.total_cpu_cores}}
{{ _('Average CPU Utilization (%%): ') }}
{{agent.avg_cpu_utilization_percentage}}
{% if agent.cpu_core_details %}
{% if agent.cpu_core_details|length > 0 %}
|
||||||||||||||||||||||
|
{{ _('Disk Utilization') }}
|
||||||||||||||||||||||
|
{{ _('Total Disk Size (MB): ') }}
{{agent.total_disk_size_mb}}
{{ _('Disk Space Used (MB): ') }}
{{agent.total_disk_space_used_mb}}
{{ _('Disk Space Available (MB): ') }}
{{agent.total_disk_space_available_mb}}
{{ _('Disk Utilization (%%): ') }}
{{agent.disk_utilization_percentage}}
{% if agent.disk_utilization_details %}
{% if agent.disk_utilization_details|length > 0 %}
|
||||||||||||||||||||||
|
{{ _('Memory Details') }}
|
||||||||||||||||||||||
|
{% if agent.mem_details %}
{% if agent.mem_details|length > 0 %}
|
|
{{ _('Server Details') }}
|
|||||||||||||||||||
|
{% if server|length > 0 %}
|
|||||||||||||||||||
|
{{ _('Database Details') }}
|
|||||||||||||||||||
|
{% if server.db_details %}
|
|||||||||||||||||||
|
{{ _('Tablespace Details') }}
|
|||||||||||||||||||
|
{% if server.tablespace_details %}
|