|
| 1 | +--- |
| 2 | +title: Usage |
| 3 | +order: 2 |
| 4 | +--- |
| 5 | + |
| 6 | +## Usage |
| 7 | + |
| 8 | +If you run your application in the `debug` mode, the query monitor will be automatically active. So there is nothing you have to do. |
| 9 | + |
| 10 | +By default, this package will display an `alert()` message to notify you about an N+1 query found in the current request. |
| 11 | + |
| 12 | +If you rather want this information to be written to your `laravel.log` file, written to your browser's console log as a warning or listed in a new tab for the [Laravel Debugbar (barryvdh/laravel-debugbar)](https://github.com/barryvdh/laravel-debugbar), you can publish the configuration and change the output behaviour (see example below). |
| 13 | + |
| 14 | +You can publish the package's configuration using this command: |
| 15 | + |
| 16 | +```bash |
| 17 | +php artisan vendor:publish --provider="BeyondCode\QueryDetector\QueryDetectorServiceProvider" |
| 18 | +``` |
| 19 | + |
| 20 | +This will add the `querydetector.php` file in your config directory with the following contents: |
| 21 | + |
| 22 | +```php |
| 23 | +return [ |
| 24 | + /* |
| 25 | + * Enable or disable the query detection. |
| 26 | + * If this is set to "null", the app.debug config value will be used. |
| 27 | + */ |
| 28 | + 'enabled' => env('QUERY_DETECTOR_ENABLED', null), |
| 29 | + |
| 30 | + /* |
| 31 | + * Threshold level for the N+1 query detection. If a relation query will be |
| 32 | + * executed more then this amount, the detector will notify you about it. |
| 33 | + */ |
| 34 | + 'threshold' => (int) env('QUERY_DETECTOR_THRESHOLD', 1), |
| 35 | + |
| 36 | + /* |
| 37 | + * Here you can whitelist model relations. |
| 38 | + * |
| 39 | + * Right now, you need to define the model relation both as the class name and the attribute name on the model. |
| 40 | + * So if an "Author" model would have a "posts" relation that points to a "Post" class, you need to add both |
| 41 | + * the "posts" attribute and the "Post::class", since the relation can get resolved in multiple ways. |
| 42 | + */ |
| 43 | + 'except' => [ |
| 44 | + //Author::class => [ |
| 45 | + // Post::class, |
| 46 | + // 'posts', |
| 47 | + //] |
| 48 | + ], |
| 49 | + |
| 50 | + /* |
| 51 | + * Define the output format that you want to use. Multiple classes are supported. |
| 52 | + * Available options are: |
| 53 | + * |
| 54 | + * Alert: |
| 55 | + * Displays an alert on the website |
| 56 | + * \BeyondCode\QueryDetector\Outputs\Alert::class |
| 57 | + * |
| 58 | + * Console: |
| 59 | + * Writes the N+1 queries into your browsers console log |
| 60 | + * \BeyondCode\QueryDetector\Outputs\Console::class |
| 61 | + * |
| 62 | + * Clockwork: (make sure you have the itsgoingd/clockwork package installed) |
| 63 | + * Writes the N+1 queries warnings to Clockwork log |
| 64 | + * \BeyondCode\QueryDetector\Outputs\Clockwork::class |
| 65 | + * |
| 66 | + * Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed) |
| 67 | + * Writes the N+1 queries into a custom messages collector of Debugbar |
| 68 | + * \BeyondCode\QueryDetector\Outputs\Debugbar::class |
| 69 | + * |
| 70 | + * JSON: |
| 71 | + * Writes the N+1 queries into the response body of your JSON responses |
| 72 | + * \BeyondCode\QueryDetector\Outputs\Json::class |
| 73 | + * |
| 74 | + * Log: |
| 75 | + * Writes the N+1 queries into the Laravel.log file |
| 76 | + * \BeyondCode\QueryDetector\Outputs\Log::class |
| 77 | + */ |
| 78 | + 'output' => [ |
| 79 | + \BeyondCode\QueryDetector\Outputs\Log::class, |
| 80 | + \BeyondCode\QueryDetector\Outputs\Alert::class, |
| 81 | + ] |
| 82 | + |
| 83 | +]; |
| 84 | +``` |
| 85 | + |
| 86 | +If you use **Lumen**, you need to copy the config file manually and register the Lumen Service Provider in `bootstrap/app.php` file |
| 87 | + |
| 88 | +```php |
| 89 | +$app->register(\BeyondCode\QueryDetector\LumenQueryDetectorServiceProvider::class); |
| 90 | +``` |
| 91 | + |
| 92 | +If you need additional logic to run when the package detects unoptimized queries, you can listen to the `\BeyondCode\QueryDetector\Events\QueryDetected` event and write a listener to run your own handler. (e.g. send warning to Sentry/Bugsnag, send Slack notification, etc.) |
0 commit comments