mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 07:02:34 +01:00
42ccfe0700
* minor fixes for name spaces, collector facade and composer version bump * Fixes for invoiceworkflowsettings * Add more context to support emails * Working on Firing Subscriptions * Minor fixes * Fixes for gateway filtering * Checkout Driver
42 lines
782 B
PHP
42 lines
782 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/**
|
|
* Enable or disable the collector
|
|
*/
|
|
'enabled' => false,
|
|
|
|
/**
|
|
* The API endpoint for logs
|
|
*/
|
|
'endpoint' => 'https://app.lightlogs.com/api',
|
|
|
|
/**
|
|
* Your API key
|
|
*/
|
|
'api_key' => env('COLLECTOR_API_KEY',''),
|
|
|
|
/**
|
|
* Should batch requests
|
|
*/
|
|
'batch' => true,
|
|
|
|
/**
|
|
* The default key used to store
|
|
* metrics for batching
|
|
*/
|
|
'cache_key' => 'collector',
|
|
|
|
/**
|
|
* Determines whether to log the
|
|
* host system variables using
|
|
* the built in metrics.
|
|
*/
|
|
'system_logging' => [
|
|
'Turbo124\Collector\Jobs\System\CpuMetric',
|
|
'Turbo124\Collector\Jobs\System\HdMetric',
|
|
'Turbo124\Collector\Jobs\System\MemMetric',
|
|
],
|
|
|
|
]; |