mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
93 lines
3.3 KiB
PHP
93 lines
3.3 KiB
PHP
|
<?php
|
||
|
|
||
|
use Laravel\Telescope\Watchers;
|
||
|
use Laravel\Telescope\Http\Middleware\Authorize;
|
||
|
|
||
|
return [
|
||
|
|
||
|
'path' => 'telescope',
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Telescope Storage Driver
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| This configuration options determines the storage driver that will
|
||
|
| be used to store Telescope's data. In addition, you may set any
|
||
|
| custom options as needed by the particular driver you choose.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'driver' => env('TELESCOPE_DRIVER', 'database'),
|
||
|
|
||
|
'storage' => [
|
||
|
'database' => [
|
||
|
'connection' => env('DB_CONNECTION', 'mysql'),
|
||
|
]
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Record Pruning
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| This configuration options determines how many Telescope records of
|
||
|
| a given type will be kept in storage. This allows you to control
|
||
|
| the amount of disk space claimed by Telescope's entry storage.
|
||
|
|
|
||
|
| When "null", records will not be pruned.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'limit' => env('TELESCOPE_LIMIT', 100),
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Telescope Route Middleware
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| These middleware will be assigned to every Telescope route, giving you
|
||
|
| the chance to add your own middleware to this list or change any of
|
||
|
| the existing middleware. Or, you can simply stick with this list.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'middleware' => [
|
||
|
'web',
|
||
|
Authorize::class,
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Telescope Watchers
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| The following array lists the "watchers" that will be registered with
|
||
|
| Telescope. The watchers gather the application's profile data when
|
||
|
| a request or task is executed. Feel free to customize this list.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'watchers' => [
|
||
|
Watchers\CacheWatcher::class => env('TELESCOPE_CACHE_WATCHER', true),
|
||
|
Watchers\CommandWatcher::class => env('TELESCOPE_COMMAND_WATCHER', true),
|
||
|
Watchers\DumpWatcher::class => env('TELESCOPE_DUMP_WATCHER', true),
|
||
|
Watchers\EventWatcher::class => env('TELESCOPE_EVENT_WATCHER', true),
|
||
|
Watchers\ExceptionWatcher::class => env('TELESCOPE_EXCEPTION_WATCHER', true),
|
||
|
Watchers\JobWatcher::class => env('TELESCOPE_JOB_WATCHER', true),
|
||
|
Watchers\LogWatcher::class => env('TELESCOPE_LOG_WATCHER', true),
|
||
|
Watchers\MailWatcher::class => env('TELESCOPE_MAIL_WATCHER', true),
|
||
|
Watchers\ModelWatcher::class => env('TELESCOPE_MODEL_WATCHER', true),
|
||
|
Watchers\NotificationWatcher::class => env('TELESCOPE_NOTIFICATION_WATCHER', true),
|
||
|
|
||
|
Watchers\QueryWatcher::class => [
|
||
|
'enabled' => env('TELESCOPE_QUERY_WATCHER', true),
|
||
|
'slow' => 100,
|
||
|
],
|
||
|
|
||
|
Watchers\RedisWatcher::class => env('TELESCOPE_REDIS_WATCHER', true),
|
||
|
Watchers\RequestWatcher::class => env('TELESCOPE_REQUEST_WATCHER', true),
|
||
|
Watchers\ScheduleWatcher::class => env('TELESCOPE_SCHEDULE_WATCHER', true),
|
||
|
],
|
||
|
];
|