-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBulkImportTop.py
executable file
·89 lines (73 loc) · 2.06 KB
/
BulkImportTop.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import sys
import pymssql
import csv
import os
def GetConnectionString():
file = open("./connectionstring.txt", "r")
s = file.read().replace("\n","")
d = dict(item.split(":") for item in s.split(","))
return d
# Connect to the database
connectionString = GetConnectionString()
conn = pymssql.connect(host=connectionString["host"], user=connectionString["user"],
password=connectionString["password"], database=connectionString["database"])
cursor = conn.cursor()
# Loop through the text file
fn = './topData.txt'
if not os.path.exists(fn):
exit()
with open(fn) as f:
for row in f:
data = (row.strip().split("|"))
#print(data)
# get rid of blank string
if data[2] == '':
data.pop(2)
#print(data)
#exit()
status = ''
if data[9] == 'D':
status = 'stuck_sleep'
elif data[9] == 'R':
status = 'running'
elif data[9] == 'S':
status = 'sleeping'
elif data[9] == 'T':
status = 'stopped_or_traced'
elif data[9] == 'Z':
status = 'zombie'
sql = "insert into top_data(" \
"hostname,timestamp,pid," \
"process_user,priority,nice," \
"virt_mem,res_mem,shared_mem," \
"process_status,cum_core_cpu,cpu_percent," \
"cpu_time,command_line)" \
"values(" \
"'{0}','{1}',{2}," \
"'{3}',{4},{5}," \
"{6},{7},{8}," \
"'{9}',{10},{11}," \
"'{12}','{13}')".format( \
data[0],data[1],data[2], \
data[3],data[4],data[5], \
data[6],data[7],data[8], \
status,data[10],data[11], \
data[12],data[13]);
sys.stdout.write('.')
sys.stdout.flush()
#print(sql)
#exit()
try:
cursor.execute(sql)
except:
print(sql)
pass
# Display inserted data
cursor.execute('select * from dbo.top_data')
row = cursor.fetchone()
while row:
#print(str(row[0]) + " " + str(row[1]) + " " + str(row[2]))
row = cursor.fetchone()
conn.commit()
cursor.close()
conn.close()