Telescope HTTP Watcher #51801
Unanswered
oceanapplications
asked this question in
Q&A
Replies: 1 comment
-
The HTTP watcher is on by default and you can control it with the env variable: To see http requests logged there in development make sure to use the Telescope::filter(function (IncomingEntry $entry) use ($isLocal) {
return $isLocal ||
$entry->isReportableException() ||
$entry->isFailedRequest() ||
$entry->isFailedJob() ||
$entry->isScheduledTask() ||
$entry->hasMonitoredTag();
}); to: Telescope::filter(function (IncomingEntry $entry) use ($isLocal) {
return $isLocal ||
$entry->isReportableException() ||
$entry->isFailedRequest() ||
$entry->isFailedJob() ||
$entry->isScheduledTask() ||
$entry->isClientRequest() ||
$entry->hasMonitoredTag();
}); You need to have |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I couldn't find how to enable the HTTP watcher. What's the class name for it?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions