1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/config/beacon.php

46 lines
872 B
PHP
Raw Normal View History

2020-04-30 14:33:57 +02:00
<?php
return [
/*
* Enable or disable the beacon
2020-04-30 14:33:57 +02:00
*/
2020-06-22 23:48:45 +02:00
'enabled' => env('BEACON_ENABLED', false),
2020-04-30 14:33:57 +02:00
/*
2020-04-30 14:33:57 +02:00
* The API endpoint for logs
*/
'endpoint' => 'https://app.lightlogs.com/api',
/*
2020-04-30 14:33:57 +02:00
* Your API key
*/
'api_key' => env('BEACON_API_KEY', ''),
2020-04-30 14:33:57 +02:00
/*
2020-04-30 14:33:57 +02:00
* Should batch requests
*/
'batch' => true,
2023-03-02 08:31:34 +01:00
'cache_connection' => 'sentinel-cache',
/*
2020-04-30 14:33:57 +02:00
* The default key used to store
* metrics for batching
*/
'cache_key' => 'beacon',
2020-04-30 14:33:57 +02:00
/*
* 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',
2020-06-11 13:29:36 +02:00
'Turbo124\Beacon\Jobs\System\MemMetric',
App\Jobs\Ninja\CheckDbStatus::class,
],
];