1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 07:02:34 +01:00
invoiceninja/config/collector.php
David Bomba 42ccfe0700
Checkout stubs (#3672)
* 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
2020-05-04 21:13:46 +10:00

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',
],
];