{% extends "base.html" %} {% load compress humanize staticfiles hc_extras %} {% block title %}Notification Channels - healthchecks.io{% endblock %} {% block content %}

Notification Channels

{% for ch in channels %} {% endfor %}
Type Value Assigned Checks
{% if ch.kind == "email" %} Email {% endif %} {% if ch.kind == "webhook" %} Webhook {% endif %} {% if ch.kind == "pd" %} PagerDuty {% endif %} {% if ch.kind == "email" %} to {% endif %} {% if ch.kind == "pd" %} service key {% endif %} {{ ch.value }} {% if ch.kind == "email" and not ch.email_verified %} (unconfirmed) {% endif %} {{ ch.checks.count }} of {{ num_checks }}
Add Notification Channel
{% csrf_token %}

Healthchecks.io will request the specified URL when a check goes down.

Healthchecks.io will create an incident on PagerDuty when a check goes down and will resolve it when same check goes up

{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}