Add TCP support

This commit is contained in:
Kierre
2025-11-08 17:48:08 -05:00
parent bce7d816a9
commit a0a69e96dc
4 changed files with 141 additions and 69 deletions
+3 -3
View File
@@ -12,11 +12,11 @@
<body>
<h2>{{ config['frontend']['name'] }}</h2>
{% for service in services %}
{% for service_name in services %}
<div class="service">
<p><b>{{ service }}</b></p>
<p><b>{{ services[service_name]['name'] }}</b></p>
<div class="status">
{% for ping in uptime[service] %}
{% for ping in uptime[services[service_name]['name']] %}
{% if ping == "I" %}
<p class="green">█</p>
{% elif ping == "O" %}