{% extends "base.html" %} {% load compress humanize static hc_extras %} {% block title %}{{ check|down_title }}{% endblock %} {% block content %}

{{ check.name_then_code }}

{% for tag in check.tags_list %} {{ tag }} {% endfor %}
{% if check.desc %}

Description

{{ check.desc|linebreaks|urlize }}
{% endif %}

How To Ping

Keep this check up by making HTTP requests to this URL:

{{ check.url }}

{% if check.subject %} Or by sending emails with "{{ check.subject }}" in the subject line to this address: {% else %} Or by sending emails to this address: {% endif %}

{{ check.email }}

You can also explictly signal a failure and measure job execution time.

Current Status

{% include "front/log_status_text.html" %}
{% csrf_token %}

Schedule

{% if check.kind == "simple" %} {% elif check.kind == "cron" %} {% endif %} {% if check.kind == "cron" %} {% endif %}
Period {{ check.timeout|hc_duration }}
(Expected time between pings)
Cron Expression {{ check.schedule }}
Time Zone {{ check.tz }}
Grace Time {{ check.grace|hc_duration }}
(When a check is late, how long to wait until an alert is sent)

Notification Methods

{% for channel in channels %} {% endfor %}
{% if channel in check.channel_set.all %}ON{% else %}OFF{% endif %} {{ channel }}

Remove

Permanently remove this check from your account.

Log Click on individual items for details

{% include "front/update_name_modal.html" %} {% include "front/update_timeout_modal.html" %} {% include "front/show_usage_modal.html" %} {% include "front/remove_check_modal.html" %} {% include "front/email_settings_modal.html" %} {% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}