{% if listeners %}
| Handler | {% if instance_owner_map %}Instance | {% endif %}Topic | Invocations | Success | Failed | Avg Duration |
|---|---|---|---|---|---|---|
{{ l.handler_name }}
|
{% if instance_owner_map %}
{% if l.owner in instance_owner_map %}
{{ l.owner.split(".")[-1] }}
{% else %}
{{ l.owner }}
{% endif %}
|
{% endif %}
{{ l.topic }}
|
{{ l.total_invocations }} | {{ l.successful }} | {{ l.failed }} | {{ "%.1f" | format(l.avg_duration_ms) }}ms |
No bus listeners registered.
{% endif %}