Hello All,
I am running my nodejs application on webapp service. I have an agent to monitor the application health and status. In that application status is checked by WMIC and other status by API.
WMIC -- WMIC PROCESS get Caption,Commandline,Processid (where i can monitor something like this -- node.exe "D:\Program Files\iisnode\interceptor.js" "D:\home\site\wwwroot\run.js")
right now, I have few questions about it.
1) I couldn't run WMIC command in webapp as it is a sandbox. Is there any workaround for it to run WMIC. or any other way to monitor the process.
2) can i use the agent outside to webapp to check the other activity health by the API.
let me know any suggestions/solutions to overcome this. Thanks.