update: default ping interval to 30s, update free tier limit to match

This commit is contained in:
2026-03-18 21:01:41 +04:00
parent fd821acec2
commit e4895afe8e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -488,7 +488,7 @@
</li>
<li class="flex items-center gap-2">
<svg class="w-4 h-4 text-green-400 shrink-0" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7"/></svg>
20s check interval
30s check interval
</li>
<li class="flex items-center gap-2">
<svg class="w-4 h-4 text-green-400 shrink-0" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7"/></svg>
+1 -1
View File
@@ -66,7 +66,7 @@
<select id="<%= prefix %>interval"
class="w-full <%= bg %> border <%= border %> rounded-lg px-4 py-2.5 text-gray-100 focus:outline-none focus:border-blue-500">
<% intervals.forEach(function([val, label]) { %>
<option value="<%= val %>" <%= String(monitor.interval_s || '10') === val ? 'selected' : '' %>><%= label %></option>
<option value="<%= val %>" <%= String(monitor.interval_s || '30') === val ? 'selected' : '' %>><%= label %></option>
<% }) %>
</select>
</div>