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

Copy created! This is a brand new check, with details copied over from your existing check. You might now want to update its name and tags.

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

{{ message }}

{% endfor %}
{% endif %}

{{ check.name_then_code }} (edit…)

{% 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 {% if check.methods == "POST" %}POST{% endif %} 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

{% if channels %} {% for channel in channels %} {% endfor %}
{% if channel in enabled_channels %}ON{% else %}OFF{% endif %} {{ channel }}
{% else %}
No notification methods set up yet.
Set up your preferred methods of notification in the Integrations page.
{% endif %}

Danger Zone

Copy, Transfer, or permanently remove this check.

{% if project.num_checks_available > 0 %} {% endif %}  

Log
{% if check.kind == "cron" and check.tz != "UTC" %} {% endif %}

{% csrf_token %}
{% 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/filtering_rules_modal.html" %} {% include "front/copy_modal.html" %} {% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}