aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 166b1d3f1fa51e815c7ab57c311752038ba937de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<p align="center">
  <img src="frontend/static/favicon.svg" width="80" alt="YAUM logo" />
</p>

<h1 align="center">YAUM β€” Yet Another Uptime Monitor</h1>

<p align="center">
  A private, ultra-performant, and minimalist uptime monitoring dashboard
  for websites and HTTP services, built with <strong>Go</strong> and <strong>SvelteKit</strong>.
</p>

<p align="center">
  <a href="#"><img src="https://img.shields.io/badge/Go-1.25-00ADD8?logo=go" alt="Go 1.25" /></a>
  <a href="#"><img src="https://img.shields.io/badge/Svelte-5-FF3E00?logo=svelte" alt="Svelte 5" /></a>
  <a href="#"><img src="https://img.shields.io/badge/SvelteKit-2-FF3E00?logo=svelte" alt="SvelteKit 2" /></a>
  <a href="#"><img src="https://img.shields.io/badge/TailwindCSS-3-06B6D4?logo=tailwindcss" alt="TailwindCSS 3" /></a>
  <a href="#"><img src="https://img.shields.io/badge/Docker-ready-2496ED?logo=docker" alt="Docker ready" /></a>
  <a href="#"><img src="https://img.shields.io/badge/license-MIT-green" alt="MIT License" /></a>
</p>

---

## πŸš€ Key Features

- **⏱️ High-concurrency monitoring engine** β€” Go goroutines fire per-service HTTP checks at configurable intervals (down to 10 seconds granularity).
- **πŸ“Š Real-time public dashboard** β€” Server-Sent Events (SSE) push heartbeats and status transitions to the browser as they happen.
- **πŸ” Password-protected admin panel** β€” Single-admin JWT auth with bcrypt master password; manage services, maintenances, and server metrics.
- **πŸ“ˆ Response-time charts** β€” SVG-based latency visualization with colored segments, gradient fill, and dynamic y‑axis scaling.
- **πŸ”” Discord webhook alerts** β€” Instant notifications on status transitions.
- **πŸ“‹ Keyword checking** β€” Validate response bodies for expected content.
- **πŸ“¦ Service groups** β€” Organize services into named groups for cleaner dashboards.
- **πŸ› οΈ Maintenance windows** β€” Schedule maintenance periods that display a global banner.
- **πŸ“œ Activity log** β€” Real-time log of checks, transitions, creations, and deletions.
- **πŸ“„ SVG status badges** β€” Lightweight embeddable badges for READMEs or external pages.
- **πŸ“Ί Kiosk / TV mode** β€” Full-screen dashboard for wall-mounted monitors with Screen Wake Lock API integration (prevents sleep).
- **πŸ”’ SSL/TLS inspection** β€” Automatic extraction of certificate issuer, expiry date, and days remaining; yellow alert when < 7 days.
- **πŸ–₯️ Host server health metrics** β€” CPU, RAM, and Disk usage displayed directly in the admin panel (via `gopsutil`).
- **🐳 Single-binary deployment** β€” Entire frontend embedded into the Go binary via `go:embed`; deploy with a single executable or Docker.
- **↔️ History pagination** β€” Paginated check history (50 per page) with SSE updates on page 1.

---

## πŸ› οΈ Tech Stack

| Component               | Technology                                              |
| ----------------------- | ------------------------------------------------------- |
| **Backend Language**    | Go 1.25 (`net/http`, `pgx/v5`, `golang-jwt`, `bcrypt`) |
| **Frontend Framework**  | SvelteKit 2 + Svelte 5                                  |
| **Database**            | PostgreSQL (pgx/v5) β€” in-memory fallback for dev        |
| **Styling**             | TailwindCSS 3 + custom dark theme                       |
| **Real-time transport** | Server-Sent Events (SSE)                                 |
| **Server metrics**      | `shirou/gopsutil/v4` (CPU / RAM / Disk)                 |
| **Deploy / Infra**      | Docker multistage (`alpine:3.20`), single binary        |
| **Authentication**      | JWT (7 days) + bcrypt master password                   |

---

## πŸ—‚οΈ Project Architecture

```
yaum/
β”œβ”€β”€ backend/                          # Go monolith (API + Worker + SSE)
β”‚   β”œβ”€β”€ cmd/server/main.go            # Entry point
β”‚   β”œβ”€β”€ internal/
β”‚   β”‚   β”œβ”€β”€ api/                      # HTTP handlers & router
β”‚   β”‚   β”‚   β”œβ”€β”€ handler.go            # All route handlers
β”‚   β”‚   β”‚   β”œβ”€β”€ router.go             # ServeMux + SPA file server
β”‚   β”‚   β”‚   β”œβ”€β”€ auth.go               # JWT login, verify, middleware
β”‚   β”‚   β”‚   └── stream.go             # SSE broadcaster endpoint
β”‚   β”‚   β”œβ”€β”€ monitor/                  # Background checker
β”‚   β”‚   β”‚   β”œβ”€β”€ worker.go             # Scheduling engine (10s tick granularity)
β”‚   β”‚   β”‚   └── checker.go            # HTTP check + TLS inspection
β”‚   β”‚   β”œβ”€β”€ store/                    # Data layer
β”‚   β”‚   β”‚   β”œβ”€β”€ store.go              # Interface
β”‚   β”‚   β”‚   β”œβ”€β”€ memory.go             # In-memory implementation
β”‚   β”‚   β”‚   └── postgres.go           # PostgreSQL implementation
β”‚   β”‚   β”œβ”€β”€ model/types.go            # Shared domain types
β”‚   β”‚   β”œβ”€β”€ config/config.go          # Config loader (JSON + .env)
β”‚   β”‚   β”œβ”€β”€ alerts/                   # Discord + Email notification
β”‚   β”‚   β”œβ”€β”€ sse/                      # SSE broadcaster
β”‚   β”‚   β”œβ”€β”€ servermetrics/            # CPU / RAM / Disk collector
β”‚   β”‚   └── static/                   # Embeds the frontend build
β”‚   β”œβ”€β”€ migrations/                   # PostgreSQL schema files
β”‚   β”œβ”€β”€ config.json                   # Server configuration
β”‚   └── .env.example                  # Environment template
β”‚
β”œβ”€β”€ frontend/                         # SvelteKit SPA
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ routes/
β”‚   β”‚   β”‚   β”œβ”€β”€ +page.svelte          # Public dashboard
β”‚   β”‚   β”‚   β”œβ”€β”€ login/                # Login page
β”‚   β”‚   β”‚   β”œβ”€β”€ status/[id]/          # Public service detail
β”‚   β”‚   β”‚   └── (admin)/admin/        # Admin panel
β”‚   β”‚   └── lib/
β”‚   β”‚       β”œβ”€β”€ components/           # ServiceCard, ActivityLog, modals
β”‚   β”‚       β”œβ”€β”€ realtime.ts           # SSE client subscription
β”‚   β”‚       └── api.ts                # API client helpers
β”‚   └── svelte.config.js              # adapter-static (SPA fallback)
β”‚
β”œβ”€β”€ scripts/                          # Build helpers
β”‚   β”œβ”€β”€ build-prod.sh                 # Unix production build
β”‚   └── build-prod.ps1                # Windows production build
β”‚
β”œβ”€β”€ Dockerfile                        # Multistage docker build
└── README.md                         # This file
```

### How it works

1. **Worker** β€” A background goroutine iterates active services every 10 seconds. For each service whose `interval_seconds` has elapsed since the last check, it fires a goroutine that performs an HTTP GET (with optional keyword validation and TLS certificate extraction).
2. **Persistence** β€” Each heartbeat is stored in PostgreSQL (or in-memory store for development) and the latest SSL info is saved per service.
3. **Real-time streaming** β€” Every heartbeat is broadcast to all connected browser clients via SSE at `/api/stream`.
4. **Router** β€” The Go `net/http` ServeMux (Go 1.22+ pattern matching) handles API routes (`/api/*`) and falls through to an embedded static file server for the SvelteKit frontend. Any path that doesn't match a file gets the SPA fallback (`200.html`), enabling client-side routing for `/admin`, `/status/[id]`, and `/login`.

---

## βš™οΈ Getting Started β€” Local Development

### Prerequisites

- [Go](https://go.dev/dl/) 1.25+
- [Node.js](https://nodejs.org/) 20+
- [PostgreSQL](https://www.postgresql.org/download/) 16+ (optional β€” the app falls back to an in-memory store)

### 1. Clone and configure

```bash
git clone https://git.devlucas.me/yaum.git
cd yaum/backend
cp .env.example .env
```

Edit `.env` with your credentials:

```env
ADMIN_USERNAME=admin
ADMIN_PASSWORD=your-secure-password
JWT_SECRET=your-random-64-char-secret
```

Optionally set up PostgreSQL in `config.json` (the app works without it using an in-memory store with seed data).

### 2. Start the Go backend

```bash
cd backend
go run ./cmd/server/
```

The API will be available at `http://localhost:8080`.

### 3. Start the SvelteKit frontend (dev mode)

```bash
cd frontend
npm install
npm run dev
```

The Vite dev server runs at `http://localhost:5173` and proxies `/api/*` requests to the Go backend.

Open `http://localhost:5173` in your browser. Navigate to `/login` and sign in with your admin credentials.

---

## 🐳 Production & Deployment

YAUM uses a **multistage Docker build** that produces a ~20 MB image containing everything needed to run.

### Build the image

```bash
docker build -t yaum .
```

### Run the container

Mount your `config.json` and `.env` file, and expose port 8080:

```bash
docker run -d \
  --name yaum \
  -p 8080:8080 \
  -v /host/path/config.json:/app/config.json \
  -v /host/path/.env:/app/.env \
  yaum
```

### Build the binary manually

To produce the single binary without Docker:

```bash
# 1. Build the frontend
cd frontend && npm ci && npm run build

# 2. Copy the static export into the Go embed directory
cp -r frontend/build backend/internal/static/build/

# 3. Compile the Go binary
cd backend
CGO_ENABLED=0 go build -ldflags="-s -w" -o yaum ./cmd/server/
```

Run the resulting `backend/yaum` binary β€” it serves both the API and the frontend on the configured port (default `:8080`).

### Platform-specific instructions

| Platform   | Script                   |
| ---------- | ------------------------ |
| Linux/macOS | `scripts/build-prod.sh`  |
| Windows    | `scripts\build-prod.ps1` |

---

## πŸ“„ License

```
MIT License

Copyright (c) 2026

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```