alexsilva / supervisor

Supervisor process control system for Windows
http://supervisord.org
Other
118 stars 26 forks source link

Displaying process output in parent supervisor process #41

Closed cheind closed 2 years ago

cheind commented 2 years ago

Is it possible to display stdout/stderr of managed processes directly in supervisor console? I've see redirect_stderr for that purpose, but it does not work for me.

alexsilva commented 2 years ago

Use events for this. http://supervisord.org/events.html#configuring-an-event-listener https://github.com/alexsilva/supervisor/blob/windows/supervisor/scripts/sample_eventlistener.py

cheind commented 2 years ago

ok, thanks!