Remove Probes from a Project
Command
Section titled “Command”php artisan uplinkr:project:remove:probeDescription
Section titled “Description”Remove a probe command from the project. This removes a specific URL probe from a project’s monitoring configuration.
Options
Section titled “Options”| Option | Type | Required | Description |
|---|---|---|---|
--url | string | Yes | Target URL of the probe to remove |
--project | string | Yes | Project name to remove the probe from |
--force | flag | No | Force execution without confirmation |
Usage Examples
Section titled “Usage Examples”Remove a probe
Section titled “Remove a probe”php artisan uplinkr:project:remove:probe \ --url=https://example.com \ --project=my-projectForce mode (skip confirmation)
Section titled “Force mode (skip confirmation)”php artisan uplinkr:project:remove:probe \ --url=https://example.com \ --project=my-project \ --forceBehavior
Section titled “Behavior”- Validates URL and project name before execution
- Prompts for confirmation unless
--forceis used - Removes the probe configuration from the project
- Historical probe results are preserved
- Other probes in the project remain active
Use Cases
Section titled “Use Cases”- Remove monitoring for endpoints that no longer exist
- Clean up unused probe configurations
- Remove duplicate probes
- Adjust monitoring scope
Return Codes
Section titled “Return Codes”0(SUCCESS): Probe removed successfully1(INVALID): Validation failed or process was aborted