You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The change (aka magic) introduced in d673de8 caused a little headache. I'm running the recorder on Kubernetes (yes, absolutely works fine) and recently upgraded to the latest recorder version. Suddenly, no logs appeared anymore, and I was searching like hell what the issue could be. I even wondered if the earth started to rotate the other way around 🌍
Turns out: By default there is no TTY when running a process in a Kubernetes Pod and also no syslog facility. Because of that, no logs appeared. After setting tty: true on the Pod spec, the logs appeared again. Yay.
May I propose to remove this magic from recorder and introduce a command line flag to explicitely configure the log destination? Either stdout or syslog. I ❤️ being explicit, rather than assumption based.
That would be awesome 🎈
The text was updated successfully, but these errors were encountered:
You seem to have solved the problem with setting tty: true so at best we'll put this on the back burner; I can't imagine there are many people running the Recorder on Kubernetes ... ;)
Thanks for taking care of my issue 👍 I agree that there is no need for a hurry, especially because a workaround exists. And at least it's documented now in this issue, so should there be any other stranger out there running recorder on Kubernetes, it's here.
The change (aka magic) introduced in d673de8 caused a little headache. I'm running the recorder on Kubernetes (yes, absolutely works fine) and recently upgraded to the latest recorder version. Suddenly, no logs appeared anymore, and I was searching like hell what the issue could be. I even wondered if the earth started to rotate the other way around 🌍
Turns out: By default there is no TTY when running a process in a Kubernetes Pod and also no syslog facility. Because of that, no logs appeared. After setting
tty: true
on the Pod spec, the logs appeared again. Yay.May I propose to remove this magic from recorder and introduce a command line flag to explicitely configure the log destination? Either
stdout
orsyslog
. I ❤️ being explicit, rather than assumption based.That would be awesome 🎈
The text was updated successfully, but these errors were encountered: