{% extends 'endpoints/base.html' %} {% block title %}{{ endpoint.mnemonic }} Details{% endblock %} {% block content %}

{{ endpoint.mnemonic }}

Edit Delete Back to List

Basic Information

Mnemonic
{{ endpoint.mnemonic }}
Hostname
{{ endpoint.hostname }}
Full URL
{{ endpoint.scheme }}://{{ endpoint.hostname }}:{{ endpoint.port }}{{ endpoint.path }}{% if endpoint.query %}?{{ endpoint.query }}{% endif %}{% if endpoint.fragment %}#{{ endpoint.fragment }}{% endif %}
Status
{% if endpoint.ignore %} Ignored {% else %} Active {% endif %}
Path
{{ endpoint.path }}
{% if endpoint.fragment %}
Fragment
{{ endpoint.fragment }}
{% endif %} {% if endpoint.query %}
Query Parameters
{{ endpoint.query }}
{% endif %}
{% if endpoint.dns_resolver_list %}

DNS Resolver List

List Name:
{{ endpoint.dns_resolver_list.name }}
Resolvers:
{% if endpoint.dns_resolver_list.resolvers.exists %}
{% for resolver in endpoint.dns_resolver_list.resolvers.all %} {% endfor %}
Name IP Address
{{ resolver.name }} {{ resolver.ip_address }}
{% else %} No resolvers assigned to this list {% endif %}
{% endif %}

Health Check Configuration

Healthy Status Code
{{ endpoint.healthy_status_code }}
Connect Timeout
{{ endpoint.connect_timeout }} seconds
Read Timeout
{{ endpoint.read_timeout }} seconds
JSON Response
{{ endpoint.json_response|yesno:"Yes,No" }}
{% if endpoint.json_response %}
Status Key
{{ endpoint.status_key }}
Healthy Status
{{ endpoint.healthy_status }}
Version Key
{{ endpoint.version_key }}
{% endif %}
{% endblock %}