79699072

Date: 2025-07-12 06:58:51
Score: 2
Natty:
Report link

These recurring /telescope/telescope-api/requests?... Calls every ~3 seconds are made by Laravel Telescope’s front-end UI itself to poll for new request data. They get triggered automatically when you have the Telescope page open in your browser.

How to Stop the Requests

  1. Temporary : Simply closing the Telescope UI in your browser will stop the polling as

  2. Permanently:

    public function register(): void
    {
        $this->hideSensitiveRequestDetails();
        $isLocal = $this->app->environment('local');
        $isTelescopeRequest = request()?->is('telescope/telescope-api/*');
        Telescope::filter(function (IncomingEntry $entry) use ($isLocal) {
            return $isLocal ||
                    !$isTelescopeRequest||
                    $entry->isReportableException() ||
                    $entry->isFailedRequest() ||
                    $entry->isFailedJob() ||
                    $entry->isScheduledTask() ||
                    $entry->hasMonitoredTag();
            });
    } 
    

Make sure you have not made any changes in the default configurations of the telescope to capture it's request also. Please share you configurations also so that we will be able to provide more details for a simple solutions.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share you
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arun ov