arkaitzgarro / elastic-apm-laravel

Laravel APM agent for Elastic v2 intake API
MIT License
79 stars 17 forks source link

fix: fallback value for LARAVEL_START constant #147

Closed arkaitzgarro closed 3 years ago

arkaitzgarro commented 3 years ago

When the application is running in a serverless environment like Vapor or only bootstrapped once like Octane, the index.php file is never executed for every request, and thus, the constant LARAVEL_START is never defined.

I added a fallback in case the constant is not defined.

Closes #146