(period: string = '24h')
| 106 | } |
| 107 | |
| 108 | async getPerformance(period: string = '24h'): Promise<PerformanceStats> { |
| 109 | return this.fetch<PerformanceStats>(`/dashboard/metrics/performance?period=${period}`); |
| 110 | } |
| 111 | |
| 112 | // Events |
| 113 | async getRecentEvents(limit: number = 100): Promise<EventsResult> { |