[DiscordArchive] those are the actual server ticks? with minimum - average - highest?
[DiscordArchive] those are the actual server ticks? with minimum - average - highest?
Archived author: Furioz • Posted: 2025-07-21T08:54:27.994000+00:00
Original source
those are the actual server ticks? with minimum - average - highest?
Archived author: Spargel • Posted: 2025-07-21T08:55:19.843000+00:00
Original source
Max would be the highest in the last 500 diffs. 95 and 99 should be the 95% and 99% highest.
Archived author: Spargel • Posted: 2025-07-21T08:57:49.606000+00:00
Original source
You can see just from the differences between those that it's spiking, though with median at 2ms, the vast majority of diffs from the last 500 would be low.
Archived author: walkline • Posted: 2025-07-21T09:48:45.879000+00:00
Original source
You got it wrong.
Mean is the average.
Median is the 50th percentile.
Percentiles are not rocket science, they simply sort the data and pick a value from the list based on the desired percentile.
Thanks to these percentiles, we can see that your case has spikes, while most of your world ticks are equal to or less than 2 ms.
Archived author: Furioz • Posted: 2025-07-21T09:56:49.745000+00:00
Original source
yeah i'm just trying to fully understand it properly .
So the average is 1.5s
50% if handled below 2ms
where 4% does it in (lowest : 5096ms , average :6959ms , highest: 9045ms )
is this more accurate?
Archived author: Ryan Turner • Posted: 2025-07-21T10:01:17.527000+00:00
Original source
Average time is 1.46 seconds
Half of the 500 diffs took 2 seconds (median)
End of the perfoamcne the slowest captured.
95% (5096) of the diffs finished faster than 5 seconds, only taking 5% longe
99% (6959) of diffs finished fater than 7 second only taking 1 % longer
The max / highest value (9045) was the slowest diff that took 9 seconds
Majority of diffs are fast, and some are just slow
Archived author: Ryan Turner • Posted: 2025-07-21T10:02:15.505000+00:00
Original source
For your case
Archived author: walkline • Posted: 2025-07-21T10:12:18.271000+00:00
Original source
To better understand it here is how possibly your sorted diff might look like:
```
1, 1, 1, 1, 1, 1, (another 250 values of 1 and 2), 2, 2, 2, 2, 3, 3, 3, 3, (another 200 of values of 3 and lets say 50), 50, 51, 51, 52 (and in the very end you would see these high numbers), 3000, 5000, 5096, 6000, 6959, 8000, 9045.
```
Anyway, I would advice you to setup monitoring - https://www.azerothcore.org/wiki/monitor...th-grafana - maybe it would give you some more insights.