### Run Tests Source: https://github.com/spatie/cpu-load-health-check/blob/main/README.md This command is used to execute the test suite for the spatie/cpu-load-health-check package. It ensures the package's functionality remains intact after changes or updates. ```bash composer test ``` -------------------------------- ### Configure CPU Load Health Check Source: https://github.com/spatie/cpu-load-health-check/blob/main/README.md This snippet demonstrates how to configure the CPU load health check within a Laravel service provider. It uses the Spatie Health facade and the CpuLoadCheck class to set a threshold for CPU load over the last 5 minutes. ```php use Spatie\Health\Facades\Health; use Spatie\CpuLoadHealthCheck\CpuLoadCheck; Health::checks([ CpuLoadCheck::new()->failWhenLoadIsHigherInTheLast5Minutes(1.2), ]); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.