{% extends "base.html" %} {% block title %}Subscriptions{% endblock %} {% block main %}

Subscriptions

Hosted here (peers subscribe to us)

Peers POST {{ settings.base_url }}/Subscription with a rest-hook channel; we notify on matching writes.

{% for s in subs %} {% else %}{% endfor %}
idCriteriaEndpointStatus
{{ s.id[:8] }}{{ s.criteria }}{{ s.channel.endpoint }} {{ s.status }}{% if s.error %}
{{ s.error }}
{% endif %}
None.

Topics (R4 Backport) offered here

{% for t in topics %}{% endfor %}
{{ t.url }}{{ t.title }} {% for tr in t.triggers %}{{ tr.resource }} ({{ tr.interactions|join('/') }}){% endfor %} filters: {{ t.filters|list|join(', ') }}
{% if peers %}

Register configured subscriptions on a peer

{% endif %}

Notifications received at /hooks

{% for n in notes %} {% else %}{% endfor %}
#TimePeerResourceKindMethod
{% if n.traffic_id %}{{ n.id }}{% else %}{{ n.id }}{% endif %}{{ n.ts[11:19] }}{{ n.peer }} {{ n.resource_type or '(ping)' }}/{{ n.resource_id or '' }}{% if n.resource and n.resource.status %} {{ n.resource.status }}{% endif %}{{ n.kind or 'rest-hook' }}{{ n.method }}
None yet.
{% endblock %}