Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions observability/uptime-kuma/Caddyfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kuma.jaims.app {
reverse_proxy localhost:3001
}
9 changes: 7 additions & 2 deletions observability/uptime-kuma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
| Field | Value |
|---|---|
| **Phase** | Phase 1 🔴 |
| **Status** | 🔄 In Progress |
| **Status** | 🟢 Active / Operational |
| **Owner** | @SHD |
| **Last Updated** | 2025-01-01 |
| **Last Updated** | 2026-03-06 |

Uptime Kuma provides external uptime monitoring and public status page for jAIMSnet services. It runs on a dedicated Docker Droplet (not in the DOKS cluster) to ensure independence from the monitored infrastructure.

Expand All @@ -19,6 +19,11 @@ Uptime Kuma provides external uptime monitoring and public status page for jAIMS
| TLS | Caddy reverse proxy (automatic HTTPS) |
| Data persistence | Docker volume |

### Quick Start
1. SSH into the NYC1 monitoring droplet.
2. Navigate to the deployment directory.
3. Run `docker-compose up -d`.

## Monitored Endpoints

| Monitor | URL | Interval | Alert Channel |
Expand Down
13 changes: 13 additions & 0 deletions observability/uptime-kuma/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3.3"
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
volumes:
- uptime-kuma:/app/data
ports:
- "3001:3001"
restart: always

volumes:
uptime-kuma: