Open
Description
How do you use Sentry?
Self-hosted / on-premises
SDK version
4.4.1
Steps to reproduce
- Create any artisan command with any database queries, for example:
// App\Console\Commands\TestCommand
protected $signature = 'app:test-command';
public function handle()
{
\DB::table('test')->insert([
'created_at'=>now(),
]);
}
- Execute the command:
php artisan app:test-command
Expected result
Transaction with performance data is sent to Sentry
Actual result
No data is sent to Sentry