[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fBXpJAbST0aXgDYhCDSSxleAaezwtlLZ8i7ucZ5o3bh0":3,"$fG91H0FDD3CAFuK-YOL8kl5neaXL1I49nQHChF_QgrjE":14},{"slug":4,"locale":5,"title":6,"section":7,"orderIndex":8,"blocks":9,"seoTitle":7,"seoDescription":7,"updatedAt":13},"111-health","de","111 — Health-Endpoints",null,111,[10],{"type":11,"value":12},"markdown","# 111 — Health-Endpoints\n\nPartnerDesk stellt zwei öffentliche Health-Endpoints zur Verfügung, die Monitoring-Tools (Uptime Robot, Pingdom, Cloud Run Liveness-Probes, k8s) abfragen können.\n\n## Endpoints\n\n### `\u002Fhealth\u002Flive`\n\n**Liveness-Probe**. Antwortet **immer** `200 OK`, solange der PHP-Prozess läuft.\n\n```\ncurl https:\u002F\u002Fapp.partnerdesk.io\u002Fhealth\u002Flive\n→ HTTP 200\n   {\"status\": \"alive\"}\n```\n\nSinnvoll für: Container-Orchestrator (Docker Compose Healthcheck, Cloud Run, Kubernetes). Bei `non-200` wird der Container neu gestartet.\n\n### `\u002Fhealth\u002Fready`\n\n**Readiness-Probe**. Prüft, ob die App **wirklich Traffic bedienen kann**:\n\n- DB-Verbindung (`SELECT 1`).\n- Redis-Ping.\n- Messenger-Queue-Gesundheit (siehe unten).\n- Disk-Space.\n\n```\ncurl https:\u002F\u002Fapp.partnerdesk.io\u002Fhealth\u002Fready\n→ HTTP 200    (alles OK)\n   oder\n→ HTTP 503    (degraded)\n   {\"status\": \"degraded\", \"checks\": {...}}\n```\n\nBei `503` schickt der Load Balancer keinen Traffic mehr zu dieser Instanz — andere Instanzen übernehmen.\n\n## Welche Checks?\n\n| Check | Schwellenwert | Bei Überschreitung |\n|-------|---------------|---------------------|\n| **DB** | `SELECT 1` muss \u003C 1 s antworten | `503` |\n| **Cache** | Redis `PING` muss \u003C 100 ms antworten | `503` |\n| **Queue-Pending** | `> 1000` Messages warten in `messenger_messages` | `503` mit Hinweis |\n| **Queue-Stuck** | Älteste Message > 10 Min in „in-process\" | `503` |\n| **Disk** | Freier Speicher in `var\u002F` \u003C 10 % | `503` |\n\n## Monitoring-Setup\n\n### Uptime Robot\n\nURL: `https:\u002F\u002Fapp.partnerdesk.io\u002Fhealth\u002Fready`. Interval: 5 Min. Alert bei nicht-200.\n\n### Cloud Run\n\nIn der Service-Konfiguration:\n- **Liveness-Probe**: `\u002Fhealth\u002Flive` (alle 30 s).\n- **Readiness-Probe**: `\u002Fhealth\u002Fready` (alle 10 s).\n\n### Kubernetes\n\n```yaml\nlivenessProbe:\n  httpGet:\n    path: \u002Fhealth\u002Flive\n    port: 80\n  periodSeconds: 30\nreadinessProbe:\n  httpGet:\n    path: \u002Fhealth\u002Fready\n    port: 80\n  periodSeconds: 10\n```\n\n## Public-Access\n\nBeide Endpoints sind **public** (kein JWT\u002FAuth nötig). Damit Monitoring-Tools sie ohne Setup abfragen können.\n\nPrivacy-relevante Daten werden **nicht** zurückgegeben — nur Status-Flags.\n\n## Wer sieht den Status?\n\n- **Plattform-Admin**: über das Monitoring-Tool.\n- **Tenant-Admin**: indirekt — wenn `ready` `503` antwortet, sehen Sie ggf. langsame Responses oder „Service unavailable\"-Pages.\n- **Partner**: nichts (sieht nur den UI-Layer).\n\n## Was bei `degraded`?\n\nPlattform-Owner handelt:\n\n- **DB-Lag**: Postgres-Last analysieren.\n- **Queue-Pending hoch**: zusätzliche Worker hochfahren.\n- **Disk-voll**: alte Backups\u002FLogs aufräumen.\n\nTenant-Admins sind nicht betroffen, solange wenigstens eine Instanz `ready` ist.\n\n## Verwandte Kapitel\n\n- **[110 — Plattform-Admin](110-superadmin.md)**\n- **[112 — Webhook-Event-Log](112-webhook-event-log.md)**\n- **[113 — Failed-Messages](113-failed-messages.md)**\n\n---\n\n**Technische Tiefen-Doku**: [`..\u002F022-superadmin-frontend-health.md`](..\u002F022-superadmin-frontend-health.md), [`..\u002F112-operational-polish.md`](..\u002F112-operational-polish.md)\n","2026-06-01T21:39:08+02:00",{"data":15},[16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,245,249,253,257,261,265,269],{"slug":17,"locale":5,"title":18,"section":7,"orderIndex":19},"01-ueberblick","01 — Kurzüberblick & Architektur",1,{"slug":21,"locale":5,"title":22,"section":7,"orderIndex":23},"02-schnellstart","02 — Schnellstart für neue Tenants",2,{"slug":25,"locale":5,"title":26,"section":7,"orderIndex":27},"03-rollen","03 — Rollen & Berechtigungen",3,{"slug":29,"locale":5,"title":30,"section":7,"orderIndex":31},"10-kampagnen","10 — Kampagnen verwalten",10,{"slug":33,"locale":5,"title":34,"section":7,"orderIndex":35},"11-provisionen","11 — Provisionsmodelle (Tiers & Gruppen)",11,{"slug":37,"locale":5,"title":38,"section":7,"orderIndex":39},"12-mlm","12 — MLM-Struktur & Downline",12,{"slug":41,"locale":5,"title":42,"section":7,"orderIndex":43},"13-bonus","13 — Bonusprogramme",13,{"slug":45,"locale":5,"title":46,"section":7,"orderIndex":47},"14-holdback-reserve","14 — Reifezeit & Reserve (Schutz vor Rückbuchungen)",14,{"slug":49,"locale":5,"title":50,"section":7,"orderIndex":51},"15-programm-bewertungen","15 — Programm-Bewertungen im Marktplatz",15,{"slug":53,"locale":5,"title":54,"section":7,"orderIndex":55},"16-externe-bewertungen","16 — Externe Bewertungen verbinden (Anbieter)",16,{"slug":57,"locale":5,"title":58,"section":7,"orderIndex":59},"17-joint-venture-partner","17 — Joint-Venture-Partner",17,{"slug":61,"locale":5,"title":62,"section":7,"orderIndex":63},"18-vertriebsmitarbeiter","18 — Vertriebsmitarbeiter (VM)",18,{"slug":65,"locale":5,"title":66,"section":7,"orderIndex":67},"19-profitabilitaet","19 — Profitabilität einer Kampagne",19,{"slug":69,"locale":5,"title":70,"section":7,"orderIndex":71},"20-partner-anlegen","20 — Partner anlegen",20,{"slug":73,"locale":5,"title":74,"section":7,"orderIndex":75},"21-partner-status","21 — Partner-Status & Lifecycle",21,{"slug":77,"locale":5,"title":78,"section":7,"orderIndex":79},"22-partner-profile","22 — Partner-Profile & Stammdaten",22,{"slug":81,"locale":5,"title":82,"section":7,"orderIndex":83},"23-customers","23 — Customers (Endkunden)",23,{"slug":85,"locale":5,"title":86,"section":7,"orderIndex":87},"24-partner-merge","24 — Doppelte Partner zusammenführen",24,{"slug":89,"locale":5,"title":90,"section":7,"orderIndex":91},"30-webhooks","30 — Webhook-Übersicht",30,{"slug":93,"locale":5,"title":94,"section":7,"orderIndex":95},"31-stripe","31 — Stripe-Integration",31,{"slug":97,"locale":5,"title":98,"section":7,"orderIndex":99},"32-digistore24","32 — Digistore24-Integration",32,{"slug":101,"locale":5,"title":102,"section":7,"orderIndex":103},"33-copecart","33 — CopeCart-Integration",33,{"slug":105,"locale":5,"title":106,"section":7,"orderIndex":107},"34-ablefy","34 — Ablefy-Integration (vormals elopage)",34,{"slug":109,"locale":5,"title":110,"section":7,"orderIndex":111},"35-easybill","35 — easybill-Integration",35,{"slug":113,"locale":5,"title":114,"section":7,"orderIndex":115},"36-lexoffice","36 — lexoffice-Integration",36,{"slug":117,"locale":5,"title":118,"section":7,"orderIndex":119},"37-custom-webhook","37 — Custom Webhook (Zapier, Make, n8n, eigene Systeme)",37,{"slug":121,"locale":5,"title":122,"section":7,"orderIndex":123},"40-auszahlungen","40 — Auszahlungs-Workflow",40,{"slug":125,"locale":5,"title":126,"section":7,"orderIndex":127},"41-gutschriften","41 — Gutschriften (§14 UStG)",41,{"slug":129,"locale":5,"title":130,"section":7,"orderIndex":131},"42-sepa","42 — SEPA-XML-Export",42,{"slug":133,"locale":5,"title":134,"section":7,"orderIndex":135},"43-stripe-connect","43 — Stripe Connect (Express-Auszahlungen)",43,{"slug":137,"locale":5,"title":138,"section":7,"orderIndex":139},"44-buchhaltung-sync","44 — Externe Buchhaltung-Sync (easybill \u002F lexoffice)",44,{"slug":141,"locale":5,"title":142,"section":7,"orderIndex":143},"50-tracking","50 — Tracking-Cookie & Klick-Erfassung",50,{"slug":145,"locale":5,"title":146,"section":7,"orderIndex":147},"51-attribution","51 — Attribution-Modelle",51,{"slug":149,"locale":5,"title":150,"section":7,"orderIndex":151},"52-utm-subid","52 — UTM, Sub-IDs & Fingerprint",52,{"slug":153,"locale":5,"title":154,"section":7,"orderIndex":155},"53-werbemittel","53 — Werbemittel: Banner & Coupons",53,{"slug":157,"locale":5,"title":158,"section":7,"orderIndex":159},"54-links-landingpages","54 — Short-Links & Landing-Pages",54,{"slug":161,"locale":5,"title":162,"section":7,"orderIndex":163},"60-marketing-site","60 — Marketing-Site (Apex-Domain)",60,{"slug":165,"locale":5,"title":166,"section":7,"orderIndex":167},"61-popup-widget","61 — Popup-Widget für Tenant-Sites",61,{"slug":169,"locale":5,"title":170,"section":7,"orderIndex":171},"62-cross-promotion","62 — PartnerDesk Cross-Promotion (PartnerDesk empfehlen)",62,{"slug":173,"locale":5,"title":174,"section":7,"orderIndex":175},"63-lead-aff","63 — Lead-Affiliate-Programm (Partner werben Partner)",63,{"slug":177,"locale":5,"title":178,"section":7,"orderIndex":179},"70-notifications","70 — Notification-System",70,{"slug":181,"locale":5,"title":182,"section":7,"orderIndex":183},"71-email-whitelabel","71 — Email-Whitelabel",71,{"slug":185,"locale":5,"title":186,"section":7,"orderIndex":187},"72-email-templates","72 — Email-Templates",72,{"slug":189,"locale":5,"title":190,"section":7,"orderIndex":191},"73-lifecycle-mails","73 — Lifecycle-Mails",73,{"slug":193,"locale":5,"title":194,"section":7,"orderIndex":195},"80-akademie","80 — Akademie: Kurse & Lektionen",80,{"slug":197,"locale":5,"title":198,"section":7,"orderIndex":199},"81-quiz","81 — Quiz-System",81,{"slug":201,"locale":5,"title":202,"section":7,"orderIndex":203},"82-zertifikate","82 — Zertifikate nach Kurs-Komplettierung",82,{"slug":205,"locale":5,"title":206,"section":7,"orderIndex":207},"90-2fa","90 — Two-Factor-Authentication (2FA)",90,{"slug":209,"locale":5,"title":210,"section":7,"orderIndex":211},"91-rate-limiting","91 — Rate-Limiting",91,{"slug":213,"locale":5,"title":214,"section":7,"orderIndex":215},"92-audit-log","92 — Audit-Log",92,{"slug":217,"locale":5,"title":218,"section":7,"orderIndex":219},"93-dsgvo","93 — DSGVO-Tools",93,{"slug":221,"locale":5,"title":222,"section":7,"orderIndex":223},"94-legal","94 — Legal-Pages",94,{"slug":225,"locale":5,"title":226,"section":7,"orderIndex":227},"95-cookie-consent","95 — Cookie-Consent",95,{"slug":229,"locale":5,"title":230,"section":7,"orderIndex":231},"100-billing-plaene","100 — Stripe-Billing-Pläne",100,{"slug":233,"locale":5,"title":234,"section":7,"orderIndex":235},"101-trial","101 — Trial & Subscription-Status",101,{"slug":237,"locale":5,"title":238,"section":7,"orderIndex":239},"102-customer-portal","102 — Stripe Customer-Portal",102,{"slug":241,"locale":5,"title":242,"section":7,"orderIndex":243},"110-superadmin","110 — Plattform-Admin (Superadmin)",110,{"slug":4,"locale":5,"title":6,"section":7,"orderIndex":8},{"slug":246,"locale":5,"title":247,"section":7,"orderIndex":248},"112-webhook-event-log","112 — Webhook-Event-Log",112,{"slug":250,"locale":5,"title":251,"section":7,"orderIndex":252},"113-failed-messages","113 — Failed-Messages",113,{"slug":254,"locale":5,"title":255,"section":7,"orderIndex":256},"120-pwa-partner","120 — PWA Partner-Portal",120,{"slug":258,"locale":5,"title":259,"section":7,"orderIndex":260},"121-cross-tenant-hub","121 — Cross-Tenant-Hub",121,{"slug":262,"locale":5,"title":263,"section":7,"orderIndex":264},"130-public-api","130 — Public-API (für Tenant-Integratoren)",130,{"slug":266,"locale":5,"title":267,"section":7,"orderIndex":268},"131-outgoing-webhooks","131 — Outgoing-Webhooks",131,{"slug":270,"locale":5,"title":271,"section":7,"orderIndex":272},"132-exports","132 — Datenexporte (CSV, PDF-Report)",132]