如果应用程序使用客户端服务器运行,是否可以监视它。
示例我只想在我的服务器上监视" notepad.exe"如果它在多个客户端运行。
这是我要监控的基础脚本,但它只是在本地进行监控。
import os
import sys
import subprocess
import time
while True:
if 'notepad.exe' not in subprocess.Popen('tasklist', stdout=subprocess.PIPE).communicate()[0]:
print 'The application is not open'
time.sleep(10)
else:
print 'The application is now open'
任何建议或意见,提前致谢。