mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 18:41:08 +02:00
fix(monitoring): add 10 missing modules to blackbox probes + geocoding to status
Blackbox web probes were missing: body, journal, dreams, firsts, cycles, events, finance, places, who, news, mail. These modules exist in mana-apps.ts and are deployed but were never added to prometheus.yml — so they didn't show on status.mana.how. Also adds mana-geocoding and mana-events to the internal SvelteKit status page health checks. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ecfb267280
commit
2a177ba032
2 changed files with 13 additions and 0 deletions
|
|
@ -18,6 +18,8 @@ const SERVICES = [
|
|||
{ name: 'Uload Server', url: process.env.PUBLIC_ULOAD_SERVER_URL || 'http://localhost:3070' },
|
||||
{ name: 'Media', url: process.env.PUBLIC_MANA_MEDIA_URL || 'http://localhost:3011' },
|
||||
{ name: 'LLM', url: process.env.PUBLIC_MANA_LLM_URL || 'http://localhost:3025' },
|
||||
{ name: 'Geocoding', url: process.env.PUBLIC_MANA_GEOCODING_URL || 'http://localhost:3018' },
|
||||
{ name: 'Events', url: process.env.PUBLIC_MANA_EVENTS_URL || 'http://localhost:3065' },
|
||||
];
|
||||
|
||||
async function checkService(service: { name: string; url: string }): Promise<ServiceStatus> {
|
||||
|
|
|
|||
|
|
@ -243,6 +243,17 @@ scrape_configs:
|
|||
- https://mana.how/habits
|
||||
- https://mana.how/guides
|
||||
- https://mana.how/inventory
|
||||
- https://mana.how/body
|
||||
- https://mana.how/journal
|
||||
- https://mana.how/dreams
|
||||
- https://mana.how/firsts
|
||||
- https://mana.how/cycles
|
||||
- https://mana.how/events
|
||||
- https://mana.how/finance
|
||||
- https://mana.how/places
|
||||
- https://mana.how/who
|
||||
- https://mana.how/news
|
||||
- https://mana.how/mail
|
||||
- https://mana.how/playground
|
||||
# Standalone games (separate containers)
|
||||
- https://whopxl.mana.how
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue