chore(analytics): Umami aus mac-mini-Ops-Scripts (DB-Loop, Container-Liste, Doku)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-05-26 14:58:22 +02:00
parent 3ea8703a94
commit 100543b316
4 changed files with 2 additions and 4 deletions

View file

@ -236,7 +236,6 @@ Once running, services are available at:
| Grafana | https://grafana.mana.how |
| Status Page | https://status.mana.how |
| GlitchTip | https://glitchtip.mana.how |
| Umami | https://stats.mana.how |
| SSH | ssh mac-mini (via cloudflared) |
## Native Services (non-Docker)

View file

@ -31,7 +31,6 @@ BUILD_MEM_THRESHOLD_MB=3000
# Monitoring containers (by container name — more reliable than compose service names)
MONITORING_CONTAINERS=(
mana-mon-grafana
mana-mon-umami
mana-mon-victoria
mana-mon-pushgateway
mana-mon-cadvisor

View file

@ -15,7 +15,7 @@
#
# What we pause: every container with a `mana-mon-*` name. That's the
# observability stack (VictoriaMetrics, Loki, Glitchtip, cAdvisor,
# umami, blackbox, exporters, …) — combined ~700 MiB resident, large
# blackbox, exporters, …) — combined ~700 MiB resident, large
# enough to give Vite the headroom it needs without touching anything
# load-bearing. Postgres, Redis, the auth/api/web tier, all stay up.
#

View file

@ -146,7 +146,7 @@ log "Containers running: $RUNNING"
# ─── Create missing databases ───
log "Ensuring databases exist..."
for db in mana_auth mana_credits chat todo calendar clock contacts storage umami; do
for db in mana_auth mana_credits chat todo calendar clock contacts storage; do
docker exec mana-infra-postgres psql -U postgres -c "CREATE DATABASE $db;" 2>/dev/null || true
done