Netstat
Host-Independent Advanced Network Statistics
| Date uploaded | 5 months ago |
| Version | 1.0.3 |
| Download link | randomuserfood-Netstat-1.0.3.zip |
| Downloads | 39 |
| Dependency string | randomuserfood-Netstat-1.0.3 |
This mod requires the following mods to function
BepInEx-BepInExPack_GTFO
BepInEx pack for GTFO. Preconfigured and includes Unity Base DLLs.
Preferred version: 3.2.2README
Netstat
Host-Independent Network Statistics
For feedback, suggestions, and issues, message @uwufood/@randomuserhi on the GTFO Modding Server on Discord
Overview
Netstat provides methods of measuring network performance and latency in GTFO in a host-independent manner (i.e. no mods etc. are required for other players in session). Both a visual layer and an API layer are available. The visual layer is toggleable and hot-adjustable.
The position, size, order of the graphs and the visibility of individual graphs can be customized in the config.
Graphs
Ping ping
The ping graph shows the current roundtrip time to the host.
Two methods of measurements are available:
- Chat (works universally in lobby, might create error messages on host)
- NavMarker (only works in-game, unavailable when player pinging)
Rx/Tx rxtx
The Rx/Tx graph shows the current data transfer rates (Rx: receive, Tx: transmit) in bytes per second.
Rx Channel rxchan
The Rx Channel graph shows breakdown of incoming data in 6 different SNet channel types
- SC:
SessionOrderCritical - SM:
SessionMigration - CR:
GameOrderCritical - RC:
GameReceiveCritical - NC:
GameNonCritical - BC:
BotCommands
Tx Channel txchan
Similar to the Rx Channel graph, but for outgoing data.
CTT/STT cstt
The CTT/STT graph shows the current estimated Client Tick Time (CTT) and Server Tick Time (STT) in milliseconds. This is based on player locomotion.
Measures the time between player position updates which can be used to spot lag spikes on host (a large gap between position updates). A major limitation is that locomotion is only updated 20 times a second and while the player is moving, so the resolution is poor, and it has to extrapolate during periods when host is not moving.
API
For details, see NetstatAPI.cs
CHANGELOG
v1.0.7
- Use external graphlib for graphs. Remove legacy graph code.
v1.0.6
- Optimize graph stack hot-reload updates
v1.0.5
- Fix STT and CTT spiking when leaving ladders.
v1.0.4
- Fix vanilla bug where chat does not work for clients waiting to drop while host is in-game. This fix requires host to have the mod.
v1.0.3
- Added details view separate from the graphs.
- Fixed toggle graph key not respecting focus state and chat mode.
v1.0.2
- Large values now abbreviate with SI suffixes (e.g. 1.5k, 2.3M, 4.1G) for better readability
v1.0.1
- Fix log spam in console
v1.0.0
- Initial release