{{ config_name }} : {{ test_data.name }}

Result Function execution time Total execution time
{%- if test_data.result == report_info.results_map["skipped"] %} Skipped {%- elif test_data.result == report_info.results_map["passed"] %} Passed {%- elif test_data.result == report_info.results_map["failed"] %} Failed {%- endif %} {%- if test_data.func_start_time == None %} Skipped {%- elif test_data.func_end_time == None %} Finished with error {%- else %} {{ test_data.func_end_time - test_data.func_start_time }} sec {%- endif %} {%- if test_data.result == report_info.results_map["skipped"] %} Skipped {%- else %} {{ test_data.end_time - test_data.start_time }} sec {%- endif %}
{%- if test_data.result == report_info.results_map["failed"] %} {%- endif %} {%- if test_data.message != "" %} {%- endif %}
Error message:

{{ test_data.exception }}

Other messages:

{{ test_data.message|replace("\n", "
")|replace(" ", " ") }}

{%- if config_data.mapping.get("show_all_iterations",False) %} {%- for i in range(test_data.total_number_iterations) %} {% set test_name_loop = loop %} {%- endfor %}
Iteration Status
{{test_name_loop.index}} {%- if test_data.result == report_info.results_map["skipped"] %} Skipped {%- elif test_data.result == report_info.results_map["passed"] %} Passed {%- elif test_data.result == report_info.results_map["failed"] %} Failed {%- endif %}
{%- endif %}
{%- if test_data.result != report_info.results_map["skipped"] %} {%- set stats = test_data.naarad_stats %} {%- if (stats != None) and (stats|length > 0) %}

Metrics

{%- for metric_name in stats.keys() %} {%- if stats[metric_name]|length > 0 %} {%- set submetric_dict = stats[metric_name] %}

{{ metric_name }}

{%- set any_submetric = submetric_dict.values()[0] %} {%- for column_name in any_submetric|sort %} {%- endfor %} {%- for submetric_name, submetric_map in submetric_dict.items() %} {%- for key in submetric_map.keys()|sort %} {%- endfor %} {%- endfor %}
Submetric{{ column_name }}
{{ submetric_name }}{{ submetric_map[key] }}
{%- endif %} {%- endfor %}
{%- endif %} {%- set slas = test_data.sla_objs %} {%- if (slas != None) and (slas|length > 0) %}

SLAs

{%- for sla in slas %} {%- if sla.sla_passed == True %} {%- elif sla.sla_passed == False %} {%- else %} {%- endif %} {%- endfor %}
metric submetric sla rule value
{{ sla.metric }} {{ sla.sub_metric }} {{ sla.stat_name }} {{ sla.sla_type }} {{ sla.threshold }} {{ sla.stat_value }}
{%- endif %} {%- endif %}