Analyze Project Probe Performance
Command
Section titled “Command”php artisan uplinkr:project:analyzeDescription
Section titled “Description”Analyzes stored probe result files and writes summarized data back into the project’s analyzed output. The feature is still experimental, so the command should be treated as a structured preview of Uplinkr’s long-term analysis direction rather than a finalized reporting tool.
Options
Section titled “Options”| Option | Type | Required | Description |
|---|---|---|---|
--project | string | No | Name of the project to analyze (if omitted, analyzes all projects) |
--from | string | No | Start date for analysis (e.g., 2024-01-01) |
--to | string | No | End date for analysis (e.g., 2024-12-31) |
Usage Examples
Section titled “Usage Examples”Analyze a specific project
Section titled “Analyze a specific project”php artisan uplinkr:project:analyze --project=my-projectAnalyze specific date range
Section titled “Analyze specific date range”php artisan uplinkr:project:analyze \ --project=my-project \ --from=2024-01-01 \ --to=2024-01-31Analyze a date range
Section titled “Analyze a date range”php artisan uplinkr:project:analyze \ --from=2024-12-01 \ --to=2024-12-31Behavior
Section titled “Behavior”- Reads raw probe result files from storage
- Decodes and summarizes results by URL and date
- Groups statistics by probe URL slug
- Saves analyzed data in JSON format when summarized data is available
- Works with date-stamped result files
Return Codes
Section titled “Return Codes”0(SUCCESS): Analysis completed successfully