@if ($slowJobs->isEmpty()) @else Job Count Slowest @foreach ($slowJobs->take(100) as $job) {{ $job->job }} @if (is_array($config['threshold']))

{{ $job->threshold }}ms threshold

@endif
@if ($config['sample_rate'] < 1) ~{{ number_format($job->count * (1 / $config['sample_rate'])) }} @else {{ number_format($job->count) }} @endif @if ($job->slowest === null) Unknown @else {{ number_format($job->slowest) ?: '<1' }} ms @endif @endforeach
@endif @if ($slowJobs->count() > 100)
Limited to 100 entries
@endif