Ping #{{ ping.n }} {% if ping.exitstatus > 0 %} (failure, exit status {{ ping.exitstatus }}) {% elif ping.exitstatus == 0 %} (exit status 0) {% elif ping.kind == "fail" %} (received via the /fail endpoint) {% elif ping.kind == "start" %} (received via the /start endpoint) {% elif ping.kind == "ign" %} (ignored) {% endif %}

Time Received {{ ping.created.isoformat }}

{% if ping.remote_addr %}

Client IP {{ ping.remote_addr }}

{% endif %} {% if ping.scheme %}

Protocol {{ ping.scheme }}

{% endif %} {% if ping.method %}

Method {{ ping.method }}

{% endif %} {% if ping.scheme == "email" %}

From {{ ping.ua }}

{% else %}

User Agent {{ ping.ua }}

{% endif %} {% if subject %}

Subject {{ subject }}

{% endif %}
{% if ping.body %}

Request Body

{% if plain or html %}
  • Raw Message
  • {% if plain %}
  • Text
  • {% endif %} {% if html %}
  • HTML
  • {% endif %}
{{ ping.body }}
{% if plain %}
{{ plain }}
{% endif %} {% if html %}
{{ html }}
{% endif %}
{% else %}
{{ ping.body }}
{% endif %} {% endif %}