Questions tagged [laravel-telescope]

14 questions
5
votes
2 answers

Deleting Telescope entries in Laravel 8

i have telescope in my Laravel setup, I forgot that I have it and forget to prune it daily. So it accumulated a huge data already it has 28million entries and it is taking 30GB worth of space. I tried to use both php artisan telescope:clear and php…
P7rck
  • 116
  • 1
  • 5
2
votes
2 answers

Laravel Telescope - Log only errors status in Requests panel

In Laravel Telescope debug tool, in the "Requests" panel, is there a way to only log some requests, and not all requests ? For instance, all requests except those with 200 or 302 status. I tried to modify config/telescope.php file, especially that…
Vincent G
  • 8,547
  • 1
  • 18
  • 36
1
vote
0 answers

Laravel Telescope - How to add tags to a specific cache for tracking its behaviour

Laravel Telescope seems to be a useful tool to control different requests. One use I have in mind is to be able to track how often a cache is used. Imagine a big application and you try to find out if it is worth to store certain database queries in…
Symbiose
  • 13
  • 2
1
vote
0 answers

Laravel Telescope connection to mysql problem by using docker network bridge

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for mysql failed: Temporary failure in name resolution (SQL: insert into telescope_entries (batch_id, content, created_at, family_hash, type, uuid) values…
1
vote
0 answers

I can't find POST requests to API on Request tab of telescope. but I see GET requests. What can I do to see all request?

after installation telescope into laravel 8. "laravel/framework": "^8.40", "laravel/telescope": "^4.9", visited to /telescope but I don't any see requests hitting to API via POSTMAN/Telegram BOT API How to check if telescope is watching POST…
Murod
  • 22
  • 1
  • 6
0
votes
0 answers

Laravel telescope assets url is generated with https scheme instead of http

I am trying to integrate laravel telescope in my laravel(9) app which is only serving as an api.There is no fornt-end. The app is running in a docker container, port 80 of the container exposed via port 82 on the host machine. So effectively the…
Yeasir Arafat Majumder
  • 1,222
  • 2
  • 15
  • 34
0
votes
0 answers

How to record emails sent using Dacastro4 LaravelGmail in Laravel Telescope?

I want to use Telescope to record and download all emails for an email web app. I have installed Laravel Telescope. And tried to analyze whether it records emails and all. It works fine with Laravel default Mail. But in my webapp, I am using…
0
votes
0 answers

Laravel Telescope Jobs __PHP_Incomplete_Class_Name

I've installed Laravel Telescope and it works perfectly fine on my local sail instance. I kept the configuration very default. Just changed the gate and the path to my need. Path in config\telescope.php: 'path' => env('TELESCOPE_PATH',…
lordisp
  • 634
  • 9
  • 21
0
votes
0 answers

Laravel Telescope 403 forbidden when guard set to API

I'm using Laravel 10 as an API to a Nuxt front-end. I have Laravel Telescope installed. I run both projects on the same domain, but when in production mode and debug turned off, I cannot access Telescope, I get a forbidden error despite being able…
Ryan H
  • 2,620
  • 4
  • 37
  • 109
0
votes
0 answers

Laravel Randomly Throws an Error during Live Wire Ajax/Emit calls about Telescope, even though it is disabled

This error I randomly get every other call on my local is driving me insane. Call to a member function implementsInterface() on null I am using Laravel 9 with maninly Livewire, and I've only noticed it in my Livewire Ajax calls. It seems to be…
Neo
  • 11,078
  • 2
  • 68
  • 79
0
votes
0 answers

Why output of laravel/telescope does not show any transaction commands?

Looking in laravel 9.19 app at output of laravel/telescope 4.9 I wondoer why it does not show any transaction commands ? I checked file config/telescope.php and did not find any relative options... Can it be configured ? Thanks!
mstdmstd
  • 2,195
  • 17
  • 63
  • 140
0
votes
1 answer

Laravel Telescope is not found 404

I've installed the Laravel telescope and there is no error. But when I access it through http://127.0.0.1:8000/laravel/telescope It said 404 Not Found.
Rakibul Islam
  • 325
  • 1
  • 3
  • 13
0
votes
0 answers

Laravel Telescope error "The Mix manifest does not exist

I'm having trouble running telescope in an environment with apache + php 8.1 on a centos 8 server. i would not like to install node on this machine to fix the problem, i kept the same folder name for publishing "/var/www/public" I tried using php…
Elvis Reis
  • 155
  • 4
  • 12
0
votes
3 answers

Can not get access to Telescope dashboard

I want to add telescope into my laravel 8 app, but having in .env APP_ENV=local TELESCOPE_ENABLED=true and reading at site : https://laravel.com/docs/8.x/telescope The Telescope dashboard may be accessed at the /telescope route. By default, you…
Petro Gromovo
  • 1,755
  • 5
  • 33
  • 91