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

Log for “{{ check.name_then_code }}”

{% if pings %}
{% for ping in pings %} {% endfor %}
Transport Time Remote IP User Agent
{% if ping.scheme == "email" %} Email {% elif ping.scheme == "http" %} HTTP {% elif ping.scheme == "https" %} HTTPS {% endif %} {{ ping.created|naturaltime }} {{ ping.remote_addr }} {{ ping.ua }}
{% else %}
Log is empty. This check has not received any pings yet.
{% endif %}
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}