database setup for outsidethebox.top webhosting infrastructure project
https://data.outsidethebox.top
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
659 B
21 lines
659 B
{% extends "base.html" %} |
|
{% block content %} |
|
<h1>Health</h1> |
|
|
|
<div class="card"> |
|
<div><strong>DB:</strong> {% if db_ok %}OK{% else %}DOWN{% endif %}</div> |
|
<div><strong>Hosts:</strong> {{ host_count }}</div> |
|
{% if (not db_ok) and db_err %} |
|
<div class="mono subtle"><strong>Error:</strong> {{ db_err }}</div> |
|
{% endif %} |
|
</div> |
|
|
|
<div class="card"> |
|
<h2>System</h2> |
|
<div><strong>Uptime:</strong> {{ sys_uptime }}</div> |
|
<div><strong>App Uptime:</strong> {{ app_uptime }}</div> |
|
<div><strong>Load:</strong> {{ load_avg }}</div> |
|
<div><strong>Memory:</strong> {{ mem }}</div> |
|
<div><strong>Disk:</strong> {{ disk }}</div> |
|
</div> |
|
{% endblock %}
|
|
|