mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
d9d2e21f93
* Working on subscriptions * Implement return type in models * Subscription implementation * Improvements to handling importation of large accountS * Loggin imports * Activate collector * Improve memory usage of import script * Quote actions * Send Quotes * Fixes for seg faults! * Minor fixes * Fixes for client contact scopes
42 lines
763 B
PHP
42 lines
763 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/**
|
|
* Enable or disable the beacon
|
|
*/
|
|
'enabled' => true,
|
|
|
|
/**
|
|
* 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,
|
|
|
|
/**
|
|
* 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',
|
|
],
|
|
|
|
]; |