mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-18 18:03:28 -05:00
31 lines
474 B
PHP
31 lines
474 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/**
|
|
* Enable or disable the collector
|
|
*/
|
|
'enabled' => true,
|
|
|
|
/**
|
|
* 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',
|
|
|
|
]; |