Hi everyone, I just started using signoz self host...
# support
s
Hi everyone, I just started using signoz self hosted solution and I really like the platform. I'm facing one issue though with logs, only mysql docker instance logs are showing up in the system. I run all my services in docker container so I expect that all docker logs should automatically show up in signoz as well (at least this is how I understood the docs pages). I have 8 other docker containers, I see all the services in signoz, I see traces everywhere where implemented, only logs are missing. Any idea how can this be fixed? All my apps are golang apps and if checked with docker logs command logs are properly being produced.
I think the problem is that docker containers that are using -t (tty) are excluded, so in order for logspout to include their logs we need to add
ALLOW_TTY
as argument to logspout config
Adding the
ALLOW_TTY
as env var to logspout worked for me 😄
c
does have the agent auto instrument in golang as java agent.jar?