Speedtest.net
The speedtest
sensor component uses the Speedtest.net web service to measure network bandwidth performance.
Configuration
By default, it will run every hour. The user can change the update frequency in the configuration by defining the minute, hour, and day for a speed test to run. For the server_id
check the list of available servers.
To add a Speedtest.net sensor to your installation, add the following to your configuration.yaml
file:
Once per hour, on the hour (default):
# Example configuration.yaml entry
sensor:
- platform: speedtest
monitored_conditions:
- ping
- download
- upload
Configuration Variables
- monitored_conditions
-
(list)(Required)Sensors to display in the frontend.
- server_id
-
(int)(Optional)Specify the speed test server to perform the test against.
- day
-
(int | list)(Optional)Specify the day(s) of the month to schedule the speed test. Use a list for multiple entries.
- hour
-
(int | list)(Optional)Specify the hour(s) of the day to schedule the speed test. Use a list for multiple entries.
- minute
-
(int | list)(Optional)Specify the minute(s) of the hour to schedule the speed test. Use a list for multiple entries.
Default value: 0
- second
-
(int | list)(Optional)Specify the second(s) of the minute to schedule the speed test. Use a list for multiple entries.
Default value: 0
- manual
-
(bool)(Optional)True or False to turn manual mode on or off. Manual mode will disable scheduled speed tests.
Default value: false
This component uses speedtest-cli to gather network performance data from Speedtest.net. Please be aware of the potential inconsistencies that this component may display.
When Home Assistant first starts up, the values of the speed test will show as Unknown
. You can use the service sensor.update_speedtest
to run a manual speed test and populate the data or just wait for the next regularly scheduled test. You can turn on manual mode to disable the scheduled speed tests.
Examples
In this section, you find some real-life examples of how to use this sensor.
Run periodically
Every half hour of every day:
# Example configuration.yaml entry
sensor:
- platform: speedtest
minute:
- 0
- 30
monitored_conditions:
- ping
- download
- upload
Run at a specific time
Everyday at 12:30AM, 6:30AM, 12:30PM, 6:30PM:
# Example configuration.yaml entry
sensor:
- platform: speedtest
minute: 30
hour:
- 0
- 6
- 12
- 18
monitored_conditions:
- ping
- download
- upload
Using as a trigger in an automation
# Example configuration.yaml entry
automation:
- alias: "Internet Speed Glow Connect Great"
trigger:
- platform: template
value_template: "{{ states('sensor.speedtest_download')|float > 10 }}"
action:
- service: shell_command.green
- alias: "Internet Speed Glow Connect Poor"
trigger:
- platform: template
value_template: "{{ states('sensor.speedtest_download')|float < 10 }}"
action:
- service: shell_command.red
Notes
- When running on Raspberry Pi, just note that the maximum speed is limited by its 100 Mbit/s LAN adapter.
- Running this platform can have negative effects on the system’s performance as it requires a fair amount of memory.
- Entries under
monitored_conditions
only control what entities are available in Home Assistant, it does not disable the condition from running. - If ran frequently, this component has the ability to use a considerable amount of data. Frequent updates should be avoided on bandwidth-capped connections.
- While running, your network capacity is fully utilized. This may have a negative effect on other devices in use the network such as gaming consoles or streaming boxes.