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

Your new check is ready! You can now give it a name or set its schedule.

{% endif %} {% if messages %}
{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %}

{{ check.name_then_code }} (edit…)

{{ check.project }} {% for tag in check.tags_list %} {{ tag }} {% endfor %}

Description

{% if check.desc %} {{ check.desc|linebreaks|urlize }}
{% else %} Add description… {% 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 explicitly signal a failure and measure job execution time.

Current Status

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

{% include "front/details_downtimes.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 }}

Danger Zone

Transfer to a different project, or permanently remove this check.

Log Click on individual items for details
{% if check.kind == "cron" and check.tz != "UTC" %} {% endif %}

{% 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 %}