{{-- resources/views/superadmin/falcon-room/performance.blade.php --}} @extends('layouts.superadmin') @section('content') @php use Illuminate\Support\Str; // مترجم بسيط يعتمد ملف config/page_names.php $pageMap = config('page_names', []); $toArabic = function($raw) use ($pageMap) { $key = Str::of((string)$raw)->lower() ->replace([' ','.','/'],'-') ->replaceMatches('/-+/', '-') ->trim('-') ->value(); return $pageMap[$key] ?? Str::of($key)->replace('-', ' ')->title(); }; $fmtMs = function($ms){ $ms = (int)round((float)$ms); if ($ms >= 1000) return number_format($ms/1000, 2).' ث'; return $ms.' ms'; }; $pct = function($x){ $x = (float)$x; return number_format($x, 1).'%'; }; // بيانات قد تكون غير موجودة — نعمل fallbacks $stats = $stats ?? []; $slowestPages = $slowestPages ?? collect(); $devicePerformance = $devicePerformance ?? collect(); $browserPerformance = $browserPerformance ?? collect(); $dailyActivity = $dailyActivity ?? []; $hourlyActivity = $hourlyActivity ?? []; // [{hour:0,count:..,avg_time:..},...] $statusCodes = $statusCodes ?? []; // [{code:200,count:..},...] $topErrors = $topErrors ?? []; // [{route:'',count:..,last_at:''},...] $perfNotes = $perfNotes ?? []; // نصائح/ملاحظات من الكنترولر (اختياري) // مؤشرات إضافية لو توفرها بالكنترولر $p95 = $stats['p95_today'] ?? null; $p99 = $stats['p99_today'] ?? null; $errorRate = $stats['error_rate_today'] ?? null; // نسبة % $slowRate = $stats['slow_rate_today'] ?? null; // نسبة % (مثلاً >1.5s) $avgToday = (float)($stats['avg_load_today'] ?? 0); $peakHour = $stats['peak_hour'] ?? 0; $totalReq = (int)($stats['total_requests_today'] ?? 0); $uniqueU = (int)($stats['unique_users_today'] ?? 0); // SLA تقديري (تقدر تغيّره حسب سياستك) $SLA_OK_MS = 800; // ممتاز $SLA_WARN_MS = 1500; // تحذير $slaLabel = function($avg) use ($SLA_OK_MS,$SLA_WARN_MS){ $avg = (float)$avg; if ($avg >= $SLA_WARN_MS) return ['حرج','bg-rose-500/15 text-rose-200 ring-rose-400/30']; if ($avg >= $SLA_OK_MS) return ['تحذير','bg-amber-500/15 text-amber-200 ring-amber-400/30']; return ['ممتاز','bg-emerald-500/15 text-emerald-200 ring-emerald-400/30']; }; @endphp
أسئلة سقراط: أين يضيع الوقت؟ من المتضرر؟ ما الأكثر تأثيرًا على تجربة العضو؟
سقراط: هل هذه الصفحة “مهمة كثيرًا” أم “بطيئة بلا فائدة”؟ رتّب حسب (زيارات × وقت).
| الصفحة (عربي) | المفتاح | AVG | MAX | الزيارات | SLA |
|---|---|---|---|---|---|
| {{ $toArabic($p->page_title) }} | {{ $p->page_title ?? '—' }} | {{ $fmtMs($avg) }} | {{ $fmtMs($max) }} | {{ number_format($p->visits ?? 0) }} | {{ $slaText }} |
| لا توجد بيانات. | |||||
سقراط: هل التحسن مستمر أم مجرد يوم واحد؟ تابع trend وليس رقم لحظي.