-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcess_Monitor_using_log.py
60 lines (47 loc) · 1.57 KB
/
Process_Monitor_using_log.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
import psutil
import time
from sys import *
def ProcessDisplay(log_Dir = "sid"):
listProcess = []
if not os.path.exists(log_Dir):
try:
os.mkdir(log_Dir)
except:
pass
seperator = "-"*80
log_path = os.path.join(log_Dir,"sid%s.log"%(time.time()))
f= open(log_path,'w')
f.write(seperator + '\n')
f.write("sid process logger "+time.ctime()+'\n')
f.write(seperator+"\n")
for proc in psutil.process_iter():
try:
pinfo = proc.as_dict(attrs = ['pid','name','username'])
vms = proc.memory_info().vms/(1024*1024)
pinfo['vms'] = vms
listProcess.append(pinfo)
except(psutil.NoSuchProcess,psutil.AccessDenied,psutil.ZombiesProcess):
pass
for element in listProcess:
f.write('%s\n' %element)
def main():
print("_______Marvellous Infosystem by sid________")
print("Application Name is : " , argv[0])
if(len(argv)!=2):
print("Error : Invalid Number of Arguments")
exit()
if(argv[1]=="-h" or argv[1]=='-H'):
print("This script is used log records of running process")
exit()
if(argv[1]== '-u' or argv[1]=='-U'):
print("Usage : ApplicationName Absulate path_of_Directory")
exit()
try:
ProcessDisplay(argv[1])
except ValueError:
print("Error : Invalid Datatype of input")
except Exception as e:
print("Error : Invalid Input",e)
if __name__ == '__main__':
main()