feat: 관리자 대시보드 — 토큰·비용·응답시간 집계 API + 앱 /admin 페이지

- backend apps/stats: GET /api/v1/admin/stats?from&to → totals / byUser / byDay. ChatMessage(assistant) 집계만, is_superuser 아니면 403. 테스트 3개
- frontend features/admin: 요약 카드 4개(요청·토큰·비용·평균 응답), 일별 토큰 막대(div), 사용자별 표, 기간 프리셋(오늘/7/30/90일). 헤더에 ADMIN 만 아이콘. 테스트 2개

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
lee-hyeon-cheol
2026-09-21 13:39:06 +09:00
co-authored by Claude Fable 5.1
parent aa37cef13d
commit d4a5f20787
16 changed files with 517 additions and 2 deletions
+1
View File
@@ -21,5 +21,6 @@ urlpatterns = [
path("api/v1/auth/", include("apps.accounts.urls")),
path("api/v1/users/me", MeView.as_view()),
path("api/v1/chat/", include("apps.chat.urls")),
path("api/v1/admin/", include("apps.stats.urls")), # 관리자 대시보드 집계
path("", include("apps.gateway.urls")), # /api/ito/* — 사내 LLM(FabriX) 중계
]