How can I perform the Internet speed test?

Product Updates - Server Monitoring News - Updates

Blog

07.04.2025
980 79

With Livewatch, you can not only monitor servers but also keep an eye on network and internet connections – including regular speed tests. This way, you can ensure that your internet connection is stable and meets your hosting or service level. Here's how to set up an internet speed test with Livewatch:


🛠️ How to run an internet speed test with Livewatch:

1. Add a speed test check to your dashboard

  • Log in to Livewatch.

  • Go to the "Checks" or "Add New Check" section.

  • Select the "Network" category or specifically the "Speed Test" category (depending on the UI name).

  • Specify the target connection – e.g., the location you want to test or the internet connection of your server/office.

2. Set test interval and thresholds

  • Specify how often the speed test should be performed (e.g., every 15 minutes, hourly, daily).

  • Define thresholds for:

  • Download speed (e.g., below 50 Mbps = warning)

  • Upload speed

  • Ping / Latency

3. Configure alarms and notifications

  • Set up notifications if the speed drops below a certain level.

  • You can choose whether you want to be notified via email, SMS, or Slack, for example.

  • Optional: Include escalations – e.g., if the speed is poor several times in a row.

4. Analyze results

  • In the dashboard, you can graphically evaluate the speed test results over time.

  • This helps you identify patterns, e.g., For example, whether your provider slows down during peak times or if sporadic problems occur.


💡 Why is this useful?

  • If services on your server suddenly respond more slowly, you can quickly check whether the internet is the cause.

  • You have proof to present to your internet provider if the contractually agreed bandwidth is not met.

  • Also ideal for home offices, small data centers, or remote locations.

Back to news index

Knowledge Base

Here we answer questions about server monitoring from Livewatch. If you have a question that we have not yet answered here, please contact us.

Why is my internet slower than expected?

Possible causes:

  • Network overloaded by other users or devices.
  • Outdated routers or incorrect configuration.
  • Disruptions in your provider's network.
Why does my measured speed differ from my contractual speed?

Various factors such as network load, Wi-Fi signal strength, server location and hardware used can lead to deviations.

How does a DSL speed test work?

During the test, the server sends data packets to your device and measures how quickly they are transmitted. This provides information about your actual internet speed.

What is a DSL broadband test?

A DSL broadband test measures the speed of your internet connection, including download and upload speeds and latency (ping).

How is my ping?

You can use the ping test to check the network connection between your computer and another device or server. Here are the steps to perform the ping test:

On Windows:

  1. Open Command Prompt:

    • Click on the Windows icon in the taskbar.
    • Search for "cmd" or "Command Prompt" and open it.
  2. Enter the ping command:

    • Use the ping command followed by the target's IP address or hostname. For example: ping www.example.com or ping 192.168.1.1.
  3. Waiting for results:

    • The ping command sends a request to the target and measures the time it takes to receive the response.
    • You will then see the number of packets sent, packets received and the average response time.

On macOS and Linux:

  1. Open the terminal:

    • Search for "Terminal" using Spotlight search or open it from the Applications folder.
  2. Enter the ping command:

    • Use the ping command followed by the target's IP address or hostname. For example: ping www.example.com or ping 192.168.1.1.
  3. Waiting for results:

    • Like on Windows, the ping command measures response time and displays statistics.

Interpretation of results:

  • Packet Loss:

    • Some packages may be lost in transit. Low packet loss is normal, but high packet loss could indicate network problems.
  • Average response time:

    • The lower the average response time (ping time), the better. This is the time it takes for the signal to travel from the transmitter to the receiver and back.

The ping test is a simple but useful tool to identify basic network connection problems. If you're having trouble connecting to a specific server or website, the ping test can help determine if the difficulties are due to network issues.

Ping test - Online

Typically, a web page is not pinged directly because ping is based on the Internet Control Message Protocol (ICMP) and many web servers block ICMP packets to protect against potential attacks. Instead, Hypertext Transfer Protocol (HTTP) or secure HTTPS is commonly used to verify web pages.

If you still want to try to check the accessibility of your website via ping, you can do this on the command line (Windows) or in the terminal (Linux/Mac). To do this, use the following format:

ping your-website.de

Replace “your-website.de” with the actual URL of your website. However, note that many web servers can block ICMP packets, which may result in the ping not being successful even if the website is reachable.

For a more accurate check of website availability, it is better to use tools that send HTTP requests. Here are some examples:

Curl (command line):

curl -I your-webseite.de

This command uses Curl to send an HTTP head request to your website. You should receive an HTTP status code response, which will give you more information about the status of the website.

Wget (command line):

wget --spider your-website.de

The wget command with the --spider flag performs a similar function to curl and returns information about the connection states.

Online tools: There are also many online tools that can check the availability of your website. You can simply search for “website availability check” or similar terms to find relevant services.

To fully monitor your website's uptime and performance, you might also consider using specialized monitoring services or tools, which typically provide more detailed information and alerts.