System Health
For diagnostic purposes, the Network Emulator provides a collection of built-in health checks.
Health Check Name |
Status |
{% for name, status in health_check_results.items() %}
{{ name }} |
{% if status %}
Success |
{% else %}
Failure |
{% endif %}
{% endfor %}
{% if system_is_healthy %}
All health checks passed. This system is healthy and ready for operation!
{% else %}
One or more health check has failed. This system is not ready for operation!
{% endif %}
{% endblock %}