You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

115 lines
3.4 KiB

{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% block title %}My Checks - healthchecks.io{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<ol class="breadcrumb">
<li><a href="{% url 'hc-checks' %}">Checks</a></li>
<li>{{ check.name_then_code }}</li>
<li class="active">Log</li>
</ol>
{% if pings %}
<p class="log-notes">
Note: Dates and times are displayed in <strong>UTC</strong>.
</p>
<div class="table-responsive">
<table class="table" id="log">
<tr>
<th></th>
<th class="datetime">
<span class="date">Date</span>
<span class="time">Time</span>
</th>
<th class="ip">IP</th>
<th class="protocol">Protocol</th>
<th class="ua">User Agent</th>
</tr>
{% for record in pings %}
{% if record.ping %}
<tr class="ok {% if record.early %} early {% endif %}">
<td class="n-cell">
{% if record.ping.n %}
<span class="hash">#</span>{{ record.ping.n }}
{% endif %}
</td>
<td class="datetime">
<div>
<span class="date">
{{ record.ping.created|date:"N j" }}
</span>
<span class="time">
{{ record.ping.created|date:"H:i" }}
</span>
{% if record.early %}
<span class="label label-tag">early</span>
{% endif %}
</div>
</td>
<td class="ip">
{{ record.ping.remote_addr|default:"" }}
</td>
<td class="protocol">
{{ record.ping.scheme }}
</td>
<td class="ua">
{{ record.ping.ua }}
</td>
</tr>
{% endif %}
{% if record.placeholder_date %}
<tr class="missing">
<td class="n-cell">
<span class="glyphicon glyphicon-remove"></span>
</td>
<td class="datetime">
<div>
<span class="date">
{{ record.placeholder_date|date:"N j" }}
</span>
<span class="time">
{{ record.placeholder_date|date:"H:i" }}
</span>
</div>
</td>
<td colspan="4">
<small>Ping expected but not received</small>
</td>
</tr>
{% endif %}
{% endfor %}
</table>
{% if show_limit_notice and limit < 10000 %}
<p class="alert alert-info">
<strong>Showing last {{ limit }} pings.</strong>
Want to see more?
<a href="{% url 'hc-pricing' %}">
Upgrade your account!
</a>
</p>
{% endif %}
</div>
{% else %}
<div class="alert alert-info">Log is empty. This check has not received any pings yet.</div>
{% endif %}
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/log.js' %}"></script>
{% endcompress %}
{% endblock %}