You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Speedtest Tracker uses the [Official Ookla CLI](https://www.speedtest.net/apps/cli) client to execute the speedtest. There a couple of stages the Speedtest Tracker goes through, below explains the process. 
4
+
5
+
{% stepper %}
6
+
{% step %}
7
+
### Started
8
+
9
+
The Speedtest process is started
10
+
{% endstep %}
11
+
12
+
{% step %}
13
+
### Checking
14
+
15
+
The application checks for an internet connection by calling `https://icanhazip.com`
16
+
{% endstep %}
17
+
18
+
{% step %}
19
+
### Skipped \[Optional]
20
+
21
+
If you have the `SPEEDTEST_SKIP_IPS` the test will be marked as skipped as the IP returning during `Checking` matches your defined IP.
22
+
{% endstep %}
23
+
24
+
{% step %}
25
+
### Running
26
+
27
+
The application runs the speedtest by simply running the speedtest command. This command runs the speedtest like another other speedtest and returns the result in json format so the application an easily process it. 
If for various reasons the Ookla CLI returns an error, because the defined server was offline for example the tests is marked as failed. As well when the `Checking` stage fails when there is no internet. 
44
+
{% endstep %}
45
+
46
+
{% step %}
47
+
### Benchmarking
48
+
49
+
When you have thresholds set this step will evaluate the results against the threshold to determine if the test was healthy or not.
50
+
{% endstep %}
51
+
52
+
{% step %}
53
+
### Completed
54
+
55
+
This is the end stage of the process when every step is completed the test is marked as such. 
0 commit comments