DEV Community

Slothy
Slothy

Posted on

Show 404s from Laravel's telescope directly from DB

Not terribly efficient, but if you want to quickly review the recent 404s, will do in a pinch:

SELECT json_extract(content, '$.uri') AS uri, created_at 
FROM `telescope_entries` 
WHERE `content` LIKE '%404%' 
ORDER BY `sequence` DESC 
LIMIT 100
Enter fullscreen mode Exit fullscreen mode

Top comments (0)