{% extends "base_objectbrowser.html" %}
{% block title %}Configuration Health{% endblock %}
{% block smallheader %}config {% endblock %}
{% block largeheader %}Health{% endblock %}
{% block content %}
Sanity checks
{% if booleans %}
Check |
Status |
{% for k,v in booleans.items %}
{{ k }} |
{{ v }} |
{% endfor %}
{% endif %}
{% if object_health %}
Object Health
Description |
Count |
{% for k,v in object_health.items %}
{{ k }} |
{{ v|length }} |
{% endfor %}
{% endif %}
{% if parser_errors %}
{% endif %}
{% endblock %}