# Diagnosing, and reporting latency issues

## What is Network Latency?

Network latency is the time it takes for data to travel from one point to another across a network. It's measured in milliseconds (ms) and represents the delay between sending a request and receiving a response.

## Gathering the data

### Ping, and MTR

When investigating latency issues, our network engineering team needs two different types of data:

**Ping tests - these** provide accurate latency measurements. They show the true round-trip time for packets traveling to and from the destination, giving us precise numbers on how much delay you're experiencing.

**MTR -** these reveal the complete network path and show where issues occur. While MTR's latency measurements can be skewed because routers often deprioritize ICMP responses used for traceroutes, it shows the route packets take, and helps us determine where the problem lies.&#x20;

### Installing MTR

{% tabs %}
{% tab title="Debian based OS" %}
You can install MTR using the following commands:

```
sudo apt update
sudo apt install mtr
```

{% endtab %}

{% tab title="CentOS based OS" %}
You can install MTR using the following commands:

```
sudo yum install mtr
```

{% endtab %}

{% tab title="macOS" %}
You can install MTR using the following commands:

```
brew install mtr
```

{% endtab %}

{% tab title="Windows" %}
You can download MTR from: <https://sourceforge.net/projects/winmtr/>
{% endtab %}
{% endtabs %}

### Running the tests

Please run MTR, and ping tests to the following IPs:

```
[The IP that you are seeing increased latency to]
[The gateway IP of your server]
1.1.1.1
8.8.8.8
104.36.84.66
66.23.198.57
```

Using the following command:

```
ping -c 200 [IP-from-the-list-above] > ping_results-[IP-from-the-list-above].txt
mtr -c 200 -r [IP-from-the-list-above] > mtr_results-[IP-from-the-list-above].txt
```

### Bi-directional testing

Wherever possible, please make sure to run these tests both from your VPS to the destination, as well as from the destination, to your server. If the endpoint to which you are doing these tests isn't directly accessible by you, please check if they have a looking glass.

If the service that you are having latency issues with does have one, then please run a ping, and an MTR test from that looking glass to your server. &#x20;

Alongside this, please also run MTR & ping tests from [our looking glass](https://crunchbits.com/network/lg) to your server. This will help us determine if the issue comes from within our network, or externally.

## What to do before opening a ticket

Please look at the results of your tests. If the latency is only increased to either a certain network, or only to a certain host, please reach out to the other side instead of us.

The next thing that you should do, is check [our status page](https://status.crunchbits.com/), and make sure that we currently don't have any open network outages, and or maintenance. &#x20;

Another thing that you should also take a look at, is the status page of the other side. Occasionally, they might be under maintenance, which may increase your latency.&#x20;

The last thing that you should do, is wait 24-48 hours, and redo the tests. Sometimes there might be an outage/degradation of the fiber line in between us, and the other side, which we are not always notified about. These are usually sorted out within 24-48 hours.

## Opening a ticket

### 1. Open a ticket <a href="#id-1.-open-a-ticket" id="id-1.-open-a-ticket"></a>

Start by going to our client area, and then on the left navigation bar, please select `Support` \[1] > `Open Ticket` \[2]

<figure><img src="https://2514707875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcU9MNuN6meCyYuRlFMOh%2Fuploads%2FWQxyACpF11FEFXSc1v1M%2Fimage.png?alt=media&#x26;token=9cc99c41-425f-4437-9953-0118682a642f" alt=""><figcaption></figcaption></figure>

### 3. Fill out the body of the ticket <a href="#id-2.-fill-out-the-body-of-the-ticket" id="id-2.-fill-out-the-body-of-the-ticket"></a>

Then, select the `Technical Support` department

<figure><img src="https://2514707875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcU9MNuN6meCyYuRlFMOh%2Fuploads%2FGLxS8toVVsHeTsjbfnNH%2Fimage.png?alt=media&#x26;token=3e772798-b445-433c-bed2-3f4d242d84c9" alt=""><figcaption></figcaption></figure>

Afterward, please fill out the `Subject`, and the `Message` part as per the table below:

<table data-header-hidden><thead><tr><th width="137.875"></th><th></th></tr></thead><tbody><tr><td>Subject [1]</td><td><pre><code>Latency issues - [xxx.xxx.xxx.xxx]
</code></pre></td></tr><tr><td>Message [2]</td><td><pre data-overflow="wrap"><code>Hello,​

I'm currently encountering latency issues with my service IP: \[xxx.xxx.xxx.xxx]
These issues started on: \[MM/DD/YYYY HH:MM PDT]
The issues are happening to: \[All endpoints, certain endpoints etc..]
Below are the MTR & ping results:
\[From my service to XYZ
Ping:
............
MTR:
............
From XYZ to my service:
Ping:
............
MTR:
............]

Please take a look at why this might be happening.

Thank you! </code></pre></td></tr></tbody></table>

In here please make sure to populate the variables within the square brackets with the appropriate values. You can also attach your tests as the .txt files that were automatically generated.&#x20;

<figure><img src="https://2514707875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcU9MNuN6meCyYuRlFMOh%2Fuploads%2FalJiWoqTn7UDBm9walT1%2FCleanShot%202025-12-17%20at%2020.18.37%402x.png?alt=media&#x26;token=57e426fd-d4e4-44cd-9675-777ea8cb2a37" alt=""><figcaption></figcaption></figure>

### 3. Submit the ticket

Click on the `Submit` button on the bottom of the page, and wait for us to take a look at your tests!&#x20;

<figure><img src="https://2514707875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcU9MNuN6meCyYuRlFMOh%2Fuploads%2F9LemVvnGCNVY4XuowlOv%2FCleanShot%202025-10-31%20at%2021.35.48%402x.png?alt=media&#x26;token=825fefd7-3570-4fbb-8008-f57014279842" alt=""><figcaption></figcaption></figure>
