@extends('layouts.app') @section('title', '실행 상세 - #' . $run->id) @section('content')

실행 상세 #{{ $run->id }}

{{ $run->flow->name }}

{{ $run->status_label }}

실행 정보

상태
{{ $run->status_label }}
진행률
{{ $run->progress }}%
완료 스텝
{{ $run->completed_steps }}/{{ $run->total_steps ?? '-' }}
@if($run->failed_step)
실패 스텝
Step {{ $run->failed_step }}
@endif
소요시간
@if($run->duration_ms) {{ number_format($run->duration_ms / 1000, 2) }}s @else - @endif
시작시간
{{ $run->started_at?->format('H:i:s') ?? '-' }}
완료시간
{{ $run->completed_at?->format('H:i:s') ?? '-' }}
실행일
{{ $run->created_at->format('Y-m-d') }}
@if($run->error_message)

에러 메시지

{{ $run->error_message }}

@endif

실행 로그

@if($run->execution_log)
@foreach($run->execution_log as $index => $log)
@if($log['success'] ?? false) @else @endif {{ $log['step_id'] ?? 'Step '.($index + 1) }} {{ $log['name'] ?? '' }}
{{ $log['duration'] ?? '' }}ms
@if(isset($log['request']))
Request: {{ $log['request']['method'] ?? '' }} {{ $log['request']['endpoint'] ?? '' }}
@endif @if(isset($log['response']))
Response: {{ $log['response']['status'] ?? '-' }}
@endif @if(isset($log['error']))
{{ $log['error'] }}
@endif
@endforeach
@else

실행 로그가 없습니다.

@endif
@endsection