{% extends "html/report_base.html" %} {% import 'macros/report_title.macro' as TITLE %} {% block title %} {{ gettext("Tuning Wizard Report") }} {% endblock %} {% block report_header_text %} {{ TITLE.TitleElement("Tuning Wizard Report") }} {%endblock%} {% block loading_text %} {%endblock%} {% block status_element_block %} {{ _('Go to: ') }} {% endblock %} {% block css_block %} {# Embed files #} {% for css_file in css_files %} {{ css_file|safe }} {% endfor %} {% endblock %} {% block dashboard_body %}
{{ _('Summary') }}
{{ INFO.element( 'fa fa-server', gettext("Number of servers selected: "), 'report_server_count', total_servers ) }} {{ INFO.element( 'pem-dashboard-icon icon-machine_utilization', gettext("Machine utilization: "), 'machine_utilization', tuning_config.usage ) }} {{ INFO.element( 'pem-dashboard-icon icon-workload_profile', gettext("Workload profile: "), 'workload_profile', tuning_config.workload ) }}
{% for s in servers %} {% if servers[s].has_changed %}
Server: {{servers[s].label}}
{% for t in tuning_changes %} {% set exploop = loop %} {% if t.server_id == servers[s].server_id and 'param' in t %} {% endif %} {% endfor %}
Table report for tuning changes
{{ _('GUC Parameter') }} {{ _('Original Value') }} {{ _('Recommended Value') }}
{{t.param}} {{t.orig_value}} {{t.rec_value}}
{% endif %} {% endfor %}
{% endblock %} {% block script_block %} {% for js_file in js_files %} {{ js_file|safe }} {% endfor %} {% endblock %}