invoiceninja/config/beacon.php

41 lines
743 B
PHP

<?php
return [
/*
* Enable or disable the beacon
*/
'enabled' => env('BEACON_ENABLED', false),
/*
* The API endpoint for logs
*/
'endpoint' => env('BEACON_API_URL', 'https://app.lightlogs.com/api'), // ,
/*
* Your API key
*/
'api_key' => env('BEACON_API_KEY', ''),
/*
* Should batch requests
*/
'batch' => true,
'cache_connection' => 'sentinel-cache',
// 'cache_connection' => 'cache',
/*
* 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' => [
],
];