@extends('layouts.admin') @section('title', '运行详情 #'.$run->id) @section('head') @include('admin.partials.modern-index-head') @endsection @section('page_actions') 返回列表 @endsection @section('content')
规则:{{ $run->rule?->name ?? '-' }}
触发方式:{{ $run->trigger_type?->value ?? '-' }}
状态:{{ $run->status?->value ?? '-' }}
创建时间:{{ $run->created_at?->format('Y-m-d H:i:s') }}
总URL:{{ $run->total_urls }}
成功:{{ $run->success_count }}
失败:{{ $run->failed_count }}
跳过:{{ $run->skipped_count }}
@if($run->error_summary)
{{ $run->error_summary }}
@endif
运行明细
@forelse($run->items as $item) @empty @endforelse
ID URL 阶段 状态 HTTP 耗时(ms) 错误
#{{ $item->id }} {{ $item->url }} {{ $item->stage }} {{ $item->status?->value ?? '-' }} {{ $item->http_code ?? '-' }} {{ $item->latency_ms ?? '-' }} {{ $item->error_message ?? '-' }}
无明细数据
关联告警
@forelse($run->alerts as $alert) @empty @endforelse
ID 等级 类型 信息 状态 时间
#{{ $alert->id }} {{ $alert->severity?->value ?? '-' }} {{ $alert->type }} {{ $alert->message }} {{ $alert->is_resolved ? '已处理' : '未处理' }} {{ $alert->created_at?->format('Y-m-d H:i:s') }}
无告警
@endsection