@php $overall = $pipelineHealth->overall; $badgeClass = match ($overall) { 'ok' => 'bg-success', 'warning' => 'bg-warning text-dark', 'problem' => 'bg-danger', 'paused' => 'bg-secondary', default => 'bg-secondary', }; $overallLabel = match ($overall) { 'ok' => 'Funcionando', 'warning' => 'Atenção', 'problem' => 'Problema', 'paused' => 'Pausado', default => '—', }; @endphp

Status do pipeline

{{ $pipelineHealth->summary }}

{{ $overallLabel }}
@if($pipelineHealth->needsRestart() && ($telegramConfig ?? null)?->isConfigured())
@csrf @php $hiddenUid = (auth()->user()->isWebmasterOrAdmin() && $user->id !== auth()->id()) ? $user->id : null; @endphp @if($hiddenUid)@endif
@endif

URLs ML/Amazon pendentes há mais de {{ $pipelineHealth->stuckPendingThresholdMinutes }} min indicam fila travada (ajustável em Configurações → Sistema). @if(auth()->user()->isWebmasterOrAdmin() && auth()->user()->hasPermission('settings.view')) Alterar limite @endif