countdownPulse(); $elapsedMs = (int) round((hrtime(true) - $startedAt) / 1_000_000); if ($elapsedMs >= (int) config('lottery.realtime_hall_countdown_warn_threshold_ms', 800)) { Log::warning('lottery:hall-countdown exceeded warn threshold', [ 'elapsed_ms' => $elapsedMs, 'threshold_ms' => (int) config('lottery.realtime_hall_countdown_warn_threshold_ms', 800), ]); } return self::SUCCESS; } }