@extends('layouts.app') @section('title', '主機監控') @push('styles') @endpush @section('content') {{-- ── 頁首 ──────────────────────────────────────────── --}}

主機監控

初始化中…
@php $agentCount = $hosts->filter(fn($h) => !empty($h->agent_token))->count(); @endphp
新增主機 匯入
@csrf
{{-- ── Stat Cards(可篩選) ─────────────────────────── --}}
@foreach([ ['key'=>'all', 'icon'=>'bi-grid-3x3-gap-fill', 'bg'=>'#f1f5f9','color'=>'#64748b','label'=>'全部', 'id'=>'cnt-all'], ['key'=>'online', 'icon'=>'bi-check-circle-fill', 'bg'=>'#dcfce7','color'=>'#10b981','label'=>'正常運作','id'=>'cnt-online'], ['key'=>'degraded', 'icon'=>'bi-exclamation-triangle-fill','bg'=>'#fef3c7','color'=>'#f59e0b','label'=>'回應異常','id'=>'cnt-degraded'], ['key'=>'offline', 'icon'=>'bi-x-circle-fill', 'bg'=>'#fee2e2','color'=>'#ef4444','label'=>'無法連線','id'=>'cnt-offline'], ['key'=>'unknown', 'icon'=>'bi-question-circle-fill','bg'=>'#f1f5f9','color'=>'#adb5bd','label'=>'尚未檢測','id'=>'cnt-unknown'], ['key'=>'paused', 'icon'=>'bi-pause-circle-fill', 'bg'=>'#f8f9fa','color'=>'#6c757d','label'=>'暫停監控','id'=>'cnt-paused'], ['key'=>'retired', 'icon'=>'bi-archive-fill', 'bg'=>'#e9ecef','color'=>'#adb5bd','label'=>'過保不維護','id'=>'cnt-retired'], ] as $s)
{{ $s['label'] }}
@endforeach
{{-- ════════════════════════════════════════════ 地圖模式 ════════════════════════════════════════════ --}}
@php $noLoc = $hosts->filter(fn($h) => !$h->lat || !$h->lng); $noLocPrivate = $noLoc->filter(fn($h) => $h->ip_address && !filter_var($h->ip_address, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)); $noLocNoIp = $noLoc->filter(fn($h) => !$h->ip_address); @endphp @if($noLoc->isNotEmpty())
@if($noLocNoIp->isNotEmpty()) 尚未設定 IP 位址(無法定位):{{ $noLocNoIp->pluck('name')->join('、') }} @endif @if($noLocNoIp->isNotEmpty() && $noLocPrivate->isNotEmpty())
@endif @if($noLocPrivate->isNotEmpty()) 私有 IP 無法定位:{{ $noLocPrivate->pluck('name')->join('、') }} @endif
@endif
{{-- ════════════════════════════════════════════ 清單模式(依客戶→專案分組) ════════════════════════════════════════════ --}} @endsection @push('scripts') {{-- Quick-view Modal --}} @endpush