mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
46 lines
872 B
PHP
46 lines
872 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
* Enable or disable the beacon
|
|
*/
|
|
'enabled' => env('BEACON_ENABLED', false),
|
|
|
|
/*
|
|
* The API endpoint for logs
|
|
*/
|
|
'endpoint' => 'https://app.lightlogs.com/api',
|
|
|
|
/*
|
|
* Your API key
|
|
*/
|
|
'api_key' => env('BEACON_API_KEY', ''),
|
|
|
|
/*
|
|
* Should batch requests
|
|
*/
|
|
'batch' => true,
|
|
|
|
'cache_connection' => 'sentinel-cache',
|
|
|
|
/*
|
|
* The default key used to store
|
|
* metrics for batching
|
|
*/
|
|
'cache_key' => 'beacon',
|
|
|
|
/*
|
|
* Determines whether to log the
|
|
* host system variables using
|
|
* the built in metrics.
|
|
*/
|
|
'system_logging' => [
|
|
'Turbo124\Beacon\Jobs\System\CpuMetric',
|
|
'Turbo124\Beacon\Jobs\System\HdMetric',
|
|
'Turbo124\Beacon\Jobs\System\MemMetric',
|
|
App\Jobs\Ninja\CheckDbStatus::class,
|
|
],
|
|
|
|
];
|