Implement Monlet MVP stack and UI updates

This commit is contained in:
Stanislav Rossovskii
2026-05-27 10:01:59 +04:00
parent dcea096327
commit edc51e9c59
145 changed files with 15618 additions and 248 deletions

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "ok: $(date -u +%FT%TZ)"
exit 0

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "warning: degraded"
exit 1

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "critical: probe failed"
exit 2

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "unknown: probe returned unexpected exit code"
exit 3

View File

@@ -0,0 +1,8 @@
#!/bin/sh
# critical until /state/resolve.flag exists, then ok.
if [ -f /state/resolve.flag ]; then
echo "ok: resolve flag present"
exit 0
fi
echo "critical: waiting for resolve flag"
exit 2

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "ok: replay tick"
exit 0