Does it make sense if i use telescope on production ? I'm not quick familiar with it but it seems good to tracking users , Does telescope reduce the app performance ? Because it execute on all requests...
Telescope aggregates all of the metrics/data and inserts it after the request has been served - you can specify a separate DB connection for telescope also if the size/performance of your production database is of concern.
@untymage Personally, I'd suggest not doing this. Telescope should not act as a log system and is really a tool for troubleshooting issues locally... even though it allows installation elsewhere. I'm assuming likely for the purpose of having it on a dev server, but not production.
Pay attention to this sentence in the Telescope documentation...
Telescope makes a wonderful companion to your local Laravel development environment.
Also, on the Laravel 11 official documentation you can read:
You should ensure you change your APP_ENV environment variable to production in your production environment. Otherwise, your Telescope installation will be publicly available.