운영 지표와 지원 요청 저장소 추가

This commit is contained in:
Yun Chan 2026-06-28 20:13:06 +09:00
parent 50fa4ad432
commit e7ebb38177
20 changed files with 3038 additions and 39 deletions

View file

@ -150,6 +150,7 @@ async def healthcheck() -> bool:
to_regclass('app.user_preferences') IS NOT NULL AS has_preferences,
to_regclass('app.admin_engine_config') IS NOT NULL AS has_engine_config,
to_regclass('app.admin_health_event') IS NOT NULL AS has_admin_health_event,
to_regclass('app.admin_health_daily_rollup') IS NOT NULL AS has_admin_health_daily_rollup,
to_regclass('app.support_ticket') IS NOT NULL AS has_support_ticket
"""
)
@ -160,6 +161,7 @@ async def healthcheck() -> bool:
and row["has_preferences"]
and row["has_engine_config"]
and row["has_admin_health_event"]
and row["has_admin_health_daily_rollup"]
and row["has_support_ticket"]
)
except Exception: