{% load helpers %} {% load i18n %} {% if latest_execution_insights.available %}
{% trans "Execution Insights" %}
{% trans "HTTP attempts" %} {{ latest_execution_insights.http_attempts }}
{% trans "NQE query calls" %} {{ latest_execution_insights.nqe_query_calls }}
{% trans "NQE diff calls" %} {{ latest_execution_insights.nqe_diff_calls }}
{% trans "429 failures" %} {{ latest_execution_insights.http_429_failures }}
{% trans "Throttle sleep" %} {{ latest_execution_insights.throttle_sleep_seconds }}s
{% trans "Budget status" %} {{ latest_execution_insights.budget_status|placeholder }}
{% trans "Query modes" %}
{% if latest_execution_insights.execution_mode_counts %}
    {% for mode, count in latest_execution_insights.execution_mode_counts %}
  • {{ mode }} {{ count }}
  • {% endfor %}
{% else %} {% trans "No query mode data" %} {% endif %}
{% trans "Fetch modes" %}
{% if latest_execution_insights.fetch_mode_counts %}
    {% for mode, count in latest_execution_insights.fetch_mode_counts %}
  • {{ mode }} {{ count }}
  • {% endfor %}
{% else %} {% trans "No fetch mode data" %} {% endif %}
{% if latest_execution_insights.top_model_results %}
{% trans "Top model results" %}
{% endif %}
{% endif %}