use CodeIgniter\Config\BaseConfig;
class Inspector extends BaseConfig
* set to true if you want all your controller methods to be 'auto-inspected'
* set to false to set your own inspection points - provides more flexibility
public $AutoInspect = true;
* application ingestion key, you can find this on your inspector dashboard
public $IngestionKey = 'YOUR_INGESTION_KEY';
* Remote endpoint to send data.
public $URL = 'https://ingest.inspector.dev';
public $Transport = 'async';
* Max numbers of items to collect in a single session.