I'm curious as to which tools and technologies you all are using to keep track of all those services you are deploying, whether it be resource tracking, network traffic, logs, traces, or uptime.

As a bonus question, how have you organized your network or your services to reduce the overhead of implementing observability?

you are viewing a single comment's thread
view the rest of the comments
[–] 5 points 15 hours ago* (last edited 12 hours ago) (1 child)

I used to run dockprom but it was pretty ressource intensive and I have since moved to Beszel + Uptime Kuma.

I have yet to find a way to keep logs between container re-creation (I unsuccessfully tried to set up Loki back when I ran dockprom), both Beszel and Komodo only display logs from the container currently running in the stack.

  • source
  • hideshow 1 child comment
  • [–] 1 point 2 hours ago

    To have logs from every container launch in journalctl, I have systemd run podman-compose without daemonizing it. To debug container logs, a shell is usually needed anyway, so I see little point in exposing logs through a web dashboard.

  • source
  • parent