Closed rosamarsky closed 1 month ago
You might be able to build this by creating a logger.
See https://github.com/laravel-doctrine/orm/blob/9dc7790f86c2013fc43a733bde50efc0ec17881e/src/Loggers/LaravelDebugbarLogger.php for inspiration, and https://github.com/laravel/telescope/blob/4.x/src/Watchers/QueryWatcher.php for how to push to Telescope. Looks like Telescope::recordQuery
is the way.
Register your logger in config/doctrine.php at the logger
key (which should use the DOCTRINE_LOGGER
environment variable.
You might be able to build this by creating a logger.
See https://github.com/laravel-doctrine/orm/blob/9dc7790f86c2013fc43a733bde50efc0ec17881e/src/Loggers/LaravelDebugbarLogger.php for inspiration, and https://github.com/laravel/telescope/blob/4.x/src/Watchers/QueryWatcher.php for how to push to Telescope. Looks like
Telescope::recordQuery
is the way.Register your logger in config/doctrine.php at the
logger
key (which should use theDOCTRINE_LOGGER
environment variable.
Thanks, I think it will help me a lot :)
@rosamarsky Relevant PR opened recently: #501. This might make the telescope QueryWatcher work as expected.
Closing; expired.
Expected behaviour
Queries are displaying on the Queries page
Actual behaviour