run_complete_test
Perform a comprehensive internet speed test measuring download, upload, latency, and jitter in one operation using smart incremental file sizes for accurate results.
Instructions
Run a complete speed test returning all metrics in a single call.
This test uses the smart incremental approach inspired by SpeedOf.Me:
- First measures download speed with gradually increasing file sizes
- Then measures upload speed with gradually increasing data sizes
- Measures latency and jitter
- Returns comprehensive results with real-time data
Args:
max_size: Maximum file size to test (default: 100MB)
url_upload: URL for upload testing
url_latency: URL for latency testing
Returns:
Complete test results including download, upload, latency and jitter metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_size | No | 100MB | |
url_latency | No | https://httpi.dev/get | |
url_upload | No | https://httpi.dev/post |
Input Schema (JSON Schema)
{
"properties": {
"max_size": {
"default": "100MB",
"title": "Max Size",
"type": "string"
},
"url_latency": {
"default": "https://httpi.dev/get",
"title": "Url Latency",
"type": "string"
},
"url_upload": {
"default": "https://httpi.dev/post",
"title": "Url Upload",
"type": "string"
}
},
"title": "run_complete_testArguments",
"type": "object"
}