Skip to content

Remove Probes from a Project

Terminal window
php artisan uplinkr:project:remove:probe

Remove a probe command from the project. This removes a specific URL probe from a project’s monitoring configuration.

OptionTypeRequiredDescription
--urlstringYesTarget URL of the probe to remove
--projectstringYesProject name to remove the probe from
--forceflagNoForce execution without confirmation
Terminal window
php artisan uplinkr:project:remove:probe \
--url=https://example.com \
--project=my-project
Terminal window
php artisan uplinkr:project:remove:probe \
--url=https://example.com \
--project=my-project \
--force
  • Validates URL and project name before execution
  • Prompts for confirmation unless --force is used
  • Removes the probe configuration from the project
  • Historical probe results are preserved
  • Other probes in the project remain active
  • Remove monitoring for endpoints that no longer exist
  • Clean up unused probe configurations
  • Remove duplicate probes
  • Adjust monitoring scope
  • 0 (SUCCESS): Probe removed successfully
  • 1 (INVALID): Validation failed or process was aborted