mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Internal network usage increases the longer you have the console of a server open #468
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @deejaypro on GitHub (Oct 10, 2025).
Originally assigned to: @Boy132 on GitHub.
Current Behavior
When opening the console on a server the network usage to my backend services (postgres, redis) increases the longer you have it open:
Picture of the increasing Network usage
Digging deeper via wireshark I discovered that it is the data to/from Redis that increasingly got bigger over time:
Graph of the Wireshark data
I then looked into the data saved on Redis and saw that the data for graphs cpu/memory/network usage (The keys in question) constantly increases. New data for the graphs is only appended to the respective keys. With the values not cleaned up the data is just getting bigger and therefore the data the panel needs to pull from redis is getting bigger aswell.
Expected Behavior
I would expect that the old data is removed from the keys for the graphs because after a few data points it isnt used anymore.
Steps to Reproduce
Setup a enviorment with Redis as the cache.
Create a server, open the console.
Panel Version
1.0.0-beta26
Wings Version
1.0.0-beta18
Games and/or Eggs Affected
Docker Image
Error Logs
Is there an existing issue for this?