feat(dashboard): add per-user drill-down for group, model, and endpoint distributions

Click on a group name, model name, or endpoint name in the distribution
tables to expand and show per-user usage breakdown (requests, tokens,
actual cost, standard cost).

Backend: new GET /admin/dashboard/user-breakdown API with group_id,
model, endpoint, endpoint_type filters.
Frontend: clickable rows with expand/collapse sub-table in all three
distribution charts.
This commit is contained in:
erio
2026-03-16 21:31:52 +08:00
parent f42c8f2abe
commit 4b41e898a4
16 changed files with 474 additions and 74 deletions

View File

@@ -1202,6 +1202,15 @@ export interface GroupStat {
actual_cost: number // 实际扣除
}
export interface UserBreakdownItem {
user_id: number
email: string
requests: number
total_tokens: number
cost: number
actual_cost: number
}
export interface UserUsageTrendPoint {
date: string
user_id: number