This package ships with a default configured uptime check. You can modify the behaviour of the uptime check by changing the values under the uptime_check
key in the config file.
These are the default values:
'uptime_check' => [
'response_checker' => Spatie\UptimeMonitor\Helpers\UptimeResponseCheckers\LookForStringChecker::class,
'run_interval_in_minutes' => 5,
'concurrent_checks' => 10,
'timeout_per_site' => 10,
'fire_monitor_failed_event_after_consecutive_failures' => 2,
'user_agent' => 'spatie/laravel-uptime-monitor uptime checker',
'additional_headers' => [],
],