ba6848e113
The old approach counted lines from ALL files in a log directory and divided one domain's requests by that massive total. This gave every domain wrong percentages like 2% when they should be 80-99%. NEW APPROACH: Use peak concurrent values directly - Peak concurrent is a reliable indicator of traffic intensity - Calculate: domain_peak / sum_of_all_peaks * 100 - Much more accurate than trying to parse logs across different control panels Example: - Domain A peak: 421 concurrent -> 99% of server traffic ✅ - Domain B peak: 2 concurrent -> 1% of server traffic ✅ This makes far more sense than the old broken approach.