{% extends "base.html" %} {% block content %}
Broker Queue
Back to Broker
App ID: {{ app_id }}
Performance Warning: Viewing queue messages involves retrieving and re-queueing them, which can cause overhead. Only showing {{ displayed_count }} of {{ total_count }} total pending invocations.
Queue Size: {{ total_count }}
{% if pending_invocations %}
{% for invocation in pending_invocations %} {% endfor %}
Invocation ID Task Call ID Arguments Actions
{{ invocation.invocation_id[:8] }}... {{ invocation.task.task_id.split('.')[-1] }} {{ invocation.call_id.split('#')[-1][:8] if '#' in invocation.call_id else invocation.call_id[:8] }}... Details
{{ invocation.serialized_arguments }}
{% else %}
No pending invocations in queue.
{% endif %}
Number of invocations to display
{% endblock %}