@foreach ($this->clusters as $cluster)
{{ $cluster->name }}
@endforeach
@foreach ($this->servers as $server)
{{ $server->display_name }}
@endforeach
@if ($this->server)
@if ($result)
{{ $result['latency_ms'] }} ms
{{ $result['packet_count'] }} packet(s)
{{ $result['response_bytes'] }} bytes
Multi-packet: {{ $result['multi_packet_detected'] ? 'Yes' : 'No / not exposed' }}
@if ($result['error_category']){{ $result['error_category'] }} — {{ $result['safe_error_message'] }}
@endif
Normalized response
{{ $result['normalized_response'] ?: '[Empty response]' }}
Parsed response
{{ json_encode($result['parsed_response'], JSON_PRETTY_PRINT) }}
Raw textual response
{{ $result['raw_response'] ?: '[Empty response]' }}
@endif
@endif