{% if result.error_kind == "not_found" %}
controller not found
{% elif result.ok %}
● ok · {{ result.latency_ms }}ms total
{% else %}
● failed · {{ result.latency_ms }}ms total
{% endif %}
{% if result.products %}
· per-product:
{% for p, info in result.products.items() %}
{{ p }}={% if info.ok %}ok{% else %}fail{% endif %}({{ info.latency_ms }}ms){% if not loop.last %},{% endif %}
{% endfor %}
{% endif %}
{% if result.last_probed_at %}
{{ result.last_probed_at[:19] }}{% endif %}