{% extends "base_status.html" %} {% load i18n %} {% load adagiostags %} {% block title %}{% trans "Status Backends" %}{% endblock %} {% block smallheader %}{% endblock %} {% block largeheader %}{% trans "Status Backends" %}{% endblock %} {% block content %} {% blocktrans %} This page shows currently configured status backends. If you have just changed the configuration and are not seeing updated values try restarting your web server. {% endblocktrans %}
{% trans "Backend name" %} | {% trans "Socket path" %} | {% trans "Status" %} | {% for backend_name, backend in backends.items %}
---|---|---|
{{ backend_name }} | {{ backend.livestatus_socket_path }} |
{% if backend.error %}
{{ backend.error }}
{% else %}
Seems to work
{% endif %}
|