@extends('layouts.admin') @section('title', 'AI Assistant Error Logs') @section('header', 'AI Assistant Error Logs') @section('content')
Review failed tools, denied Live sessions, and Gemini connection failures.
| Time | User | Session | Tool | Error | Duration |
|---|---|---|---|---|---|
| {{ $entry->created_at?->format('d M Y, g:i:s A') }} | {{ $entry->user?->name ?? 'Unknown' }} {{ $entry->user?->email }} |
{{ IlluminateSupportStr::limit($entry->session?->uuid ?? '-', 18) }} |
{{ $entry->tool_name }} |
{{ IlluminateSupportStr::limit((string) data_get($entry->result_summary, 'error', 'Tool failed'), 220) }} | {{ $entry->duration_ms !== null ? $entry->duration_ms.' ms' : '-' }} |
| No failed tool calls. | |||||
| Time | User | Session | Event | Details |
|---|---|---|---|---|
| {{ $entry->created_at?->format('d M Y, g:i:s A') }} | {{ $entry->user?->name ?? 'Unknown' }} {{ $entry->user?->email }} |
{{ IlluminateSupportStr::limit($entry->session?->uuid ?? '-', 18) }} |
{{ $entry->event }} |
{{ IlluminateSupportStr::limit(json_encode($entry->metadata, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES), 260) }} |
| No Live or usage errors. | ||||