Open
Description
Hi, first of all, thank's for this project. It's awesome to finally bring Windows Applications to container.
So, I have one Windows Container with various processes, .NET and Win32 legacy applications.
First scenario
Entry point calls myConfigurator.exe, who calls first.exe, who creates a pool of second.exe process
Second scenario
Entry point calls myConfigurator.exe, who calls ServiceMonitor.exe, who initialize my IIS ASP.NET Web Application, who creates a pool of second.exe process
Problem
I'm already using log4net appender to send all logs to elasticsearch, and it's all good.
But, I need to send logs to default docker log too, so datacenter operators can see logs the same way they do with standard/compliant containers, using docker logs
, or portainer or any other container tool.
Question
- How random processes running inside Windows Container could write to default log output?
- How can I use LogMonitor to address those scenarios?