good morning, i have got this app up and running in my envrionment, however i have noticed a few issues....
first issue, needs some context.... I have been making a multiplayer game and signoz is monitoring the server (its still in early development), the server creates a trace for each connection, however, once a client joins a game, its being send input updates from the client, the server is ingesting this fine, but as the server is ingesting data at a rate of ~60fps, in a 5min game, the server may receive several thousand input updates. When trying to view this trace on the FE the site freezes and is seemingly incapable of displaying such an amount of information.
second issue, i have to make changes to the docker-compose-minimal.yml to get this setup with traefik to act as a reverse proxy and make my life easier, this includes adding a bunch of labels to the containers, however in order to apply updates that y'all pushing out, i have to
git pull
the latest updates, which obviously git sees and backs out entirely because I have unstaged/unpushed changes on my local files, is there a more recommended way to doing this which is going to allow me to not have to backup the changes i have made, revert the, git pull, add them all back, docker compose up -d, as this turns a 20sec
docker compsoe pull && docker compose up -d
into a whole thing that quite frankly, im more likely to mess up because of all these extra steps