├── LICENSE ├── README.md ├── composer.json └── src ├── CheckProbeHistory.php ├── CheckProbes.php ├── CheckProbesResult.php ├── Console └── CheckProbesCommand.php ├── Http ├── CheckProbesController.php └── routes.php ├── Measurement.php ├── MeasurementThresholdException.php ├── Measurements ├── Duration.php ├── NoMeasurement.php └── Percentage.php ├── Probe.php ├── ProbeManager.php ├── ProbeSkippedException.php ├── Probes ├── AvailableDiskSpace.php ├── Callback.php ├── ConnectsToDatabase.php ├── ConnectsToHttp.php ├── ExecutableIsInstalled.php ├── PhpExtensionLoaded.php ├── QueueIsRunning.php ├── QueueIsRunning │ ├── QueueIsRunningJob.php │ └── SelfHandlingQueueIsRunningJob.php └── ScheduleIsRunning.php ├── ServiceProvider.php ├── Support └── CommandLineTrait.php └── resources └── views ├── charts ├── duration.blade.php ├── percentage.blade.php └── timeline.blade.php └── show-checks.blade.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/composer.json -------------------------------------------------------------------------------- /src/CheckProbeHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/CheckProbeHistory.php -------------------------------------------------------------------------------- /src/CheckProbes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/CheckProbes.php -------------------------------------------------------------------------------- /src/CheckProbesResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/CheckProbesResult.php -------------------------------------------------------------------------------- /src/Console/CheckProbesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/Console/CheckProbesCommand.php -------------------------------------------------------------------------------- /src/Http/CheckProbesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/Http/CheckProbesController.php -------------------------------------------------------------------------------- /src/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightmachine/scrutiny/HEAD/src/Http/routes.php -------------------------------------------------------------------------------- /src/Measurement.php: -------------------------------------------------------------------------------- 1 |