@extends('layouts.app') @section('title', 'Log 分析 — ' . $logCollection->displayName()) @section('content')
| 時間 | 嚴重度 | 程序 | 訊息 |
|---|---|---|---|
| {{ $entry->logged_at?->format('m/d H:i:s') ?? '—' }} | {{ strtoupper($entry->severity) }} | {{ $entry->process ?? '—' }}{{ $entry->pid ? '['.$entry->pid.']' : '' }} | {{ $entry->message }} |
| @if($severity || $search) 找不到符合條件的記錄 @else 尚無解析的 Log 項目 @endif | |||
| 次數 | 嚴重度 | 錯誤訊息 | 建議處置 |
|---|---|---|---|
| {{ number_format($err->cnt) }} | @php $sc = match($err->severity) { 'critical','alert','emergency' => 'dark', default => 'danger', }; @endphp {{ strtoupper($err->severity) }} | {{ Str::limit($err->message, 120) }} | @if($sol) {{ $sol['lbl'] }} {{ $sol['tip'] }} @else — @endif |
| 程序名稱 | Error | 總行數 |
|---|---|---|
| {{ $proc->process }} | {{ number_format($proc->errs) }} | {{ number_format($proc->cnt) }} |