-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProcessIperfUDP.py
287 lines (256 loc) · 9.42 KB
/
ProcessIperfUDP.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
'''
iPerf processing Script.
Author Siggi Bjarnason Copyright 2021
Website https://supergeek.us
Description:
Reads in json generated by iperf doing UDP and converts to csv for analysis and charting
'''
# Import libraries
import sys
import os
import string
import time
import platform
import json
try:
import tkinter as tk
from tkinter import filedialog
btKinterOK = True
except:
print ("Failed to load tkinter, CLI only mode.")
btKinterOK = False
# End imports
def CSVClean(strText, iLimit=350):
if strText is None:
return ""
else:
strTemp = str(strText)
strTemp = strTemp.encode("ascii", "ignore")
strTemp = strTemp.decode("ascii", "ignore")
strTemp = strTemp.replace(",", "")
strTemp = strTemp.replace("\n", " ")
strTemp = strTemp.replace("\r", " ")
return strTemp[:iLimit]
def getInput(strPrompt):
if sys.version_info[0] > 2:
return input(strPrompt)
else:
print("please upgrade to python 3")
sys.exit(5)
def CleanExit(strCause):
try:
objLogOut.close()
objFileOut.close()
objFileIn.close()
except:
pass
sys.exit(9)
def LogEntry(strMsg, bAbort=False):
strTimeStamp = time.strftime("%m-%d-%Y %H:%M:%S")
objLogOut.write("{0} : {1}\n".format(strTimeStamp, strMsg))
print(strMsg)
if bAbort:
CleanExit("")
def main():
global objLogOut
global objFileOut
global objFileIn
ISO = time.strftime("-%Y-%m-%d-%H-%M-%S")
strBaseDir = os.path.dirname(sys.argv[0])
strBaseDir = strBaseDir.replace("\\", "/")
strRealPath = os.path.realpath(sys.argv[0])
strRealPath = strRealPath.replace("\\", "/")
if strBaseDir == "":
iLoc = strRealPath.rfind("/")
strBaseDir = strRealPath[:iLoc]
if strBaseDir[-1:] != "/":
strBaseDir += "/"
strLogDir = strBaseDir + "Logs/"
if strLogDir[-1:] != "/":
strLogDir += "/"
iLoc = sys.argv[0].rfind(".")
if not os.path.exists(strLogDir):
os.makedirs(strLogDir)
print(
"\nPath '{0}' for log files didn't exists, so I create it!\n".format(strLogDir))
strScriptName = os.path.basename(sys.argv[0])
iLoc = strScriptName.rfind(".")
strLogFile = strLogDir + strScriptName[:iLoc] + ISO + ".log"
objLogOut = open(strLogFile, "w", 1)
strVersion = "{0}.{1}.{2}".format(
sys.version_info[0], sys.version_info[1], sys.version_info[2])
LogEntry ("This is a script process json file from iperf doing UDP and generate a csv file "
" that is easier to analyze and chart. "
"This is running under Python Version {}".format(strVersion))
LogEntry ("Running from: {}".format(strRealPath))
dtNow = time.asctime()
LogEntry ("The time now is {}".format(dtNow))
LogEntry ("Logs saved to {}".format(strLogFile))
strFilein = ""
# strFilein = "C:/Users/siggi/OneDrive/iperf/iperfudp.json"
sa = sys.argv
lsa = len(sys.argv)
if lsa > 1:
strFilein = sa[1]
if strFilein == "":
if btKinterOK:
LogEntry ("File name to be processed is missing. Opening up a file open dialog box, "
" please select the UDP file you wish to process.")
root = tk.Tk()
root.withdraw()
strFilein = filedialog.askopenfilename(title="Select the UDP iperf json file", filetypes=(
("json files", "*.json"), ("all files", "*.*")))
else:
strFilein = getInput(
"Please provide full path and filename for the WP Export file to be processed: ")
if strFilein == "":
LogEntry ("No filename provided unable to continue",True)
if os.path.isfile(strFilein):
LogEntry ("OK found {}".format(strFilein))
else:
LogEntry ("Can't find iperf json file {}".format(strFilein),True)
iLoc = strFilein.rfind(".")
strFileExt = strFilein[iLoc+1:]
iLoc = strFilein.find(".")
strOutFile = strFilein[:iLoc] + ".csv"
LogEntry ("CSV results will be written to {}".format(strOutFile))
try:
objFileOut = open(strOutFile, "w")
except PermissionError:
LogEntry("unable to open output file {} for writing, "
"permission denied.".format(strOutFile),True)
except Exception as err:
LogEntry("Unexpected error while attempting to open {} for writing. Error Details: {}".format(
strOutFile, err), True)
LogEntry("Output file {} created".format(strOutFile))
if strFileExt.lower() == "json":
try:
objFileIn = open(strFilein, "r")
except Exception as err:
LogEntry("Unexpected error while opening input file {}. Error details {}".format(strFilein,err))
else:
LogEntry(
"only able to process json files. Unable to process {} files".format(strFileExt),True)
LogEntry ("Input file {} opened and ready for reading.".format(strFilein))
strJson = objFileIn.read()
strJson = "[" + strJson + "]"
strJson = strJson.replace("}\n{", "},\n{")
lstInput = []
strRemoteHost = ""
strTimeStamp = ""
iExcelTime = 0
strSysInfo = ""
strRemotePort = ""
iTransfer = 0
iDuration = 0
iHostCPU = 0
iRemoteCPU = 0
iJitter = 0
iLostPercent = 0
iLostPackets = 0
iTotalPackets = 0
try:
lstInput = json.loads(strJson)
except Exception as err:
LogEntry("json Error: {}\n".format(err),True)
LogEntry ("top level is {} with {} entries.".format(type(lstInput),len(lstInput)))
iInstance = 0
strCCSVHeader = ("Sys Info,Version,Remote Host,Remote Port,Text Time Stamp,Excel Time Stamp,Host CPU,"
"Remote CPU,Transfer Rate kbps,Duration,Jitter,Packets Lost,Packets Sent,Packet Loss %")
objFileOut.write(strCCSVHeader + "\n")
for dictPerf in lstInput:
if "error" in dictPerf:
LogEntry ("Entry {}: {}".format (iInstance, dictPerf["error"]))
objFileOut.write("{}\n".format(dictPerf["error"]))
else:
if "start" in dictPerf:
if "version" in dictPerf["start"]:
strVersion = CSVClean (dictPerf["start"]["version"])
else:
strVersion = "unknown version"
if "system_info" in dictPerf["start"]:
strSysInfo = CSVClean (dictPerf["start"]["system_info"],30)
else:
strSysInfo = "no system info"
if "connecting_to" in dictPerf["start"]:
if "host" in dictPerf["start"]["connecting_to"]:
strRemoteHost = CSVClean (dictPerf["start"]["connecting_to"]["host"])
else:
strRemoteHost = "unknown remote host"
if "port" in dictPerf["start"]["connecting_to"]:
strRemotePort = CSVClean (dictPerf["start"]["connecting_to"]["port"])
else:
strRemotePort = "unknown remote port"
else:
strRemoteHost = "no connecting to branch"
strRemotePort = "no connecting to branch"
if "timestamp" in dictPerf["start"]:
if "time" in dictPerf["start"]["timestamp"]:
strTimeStamp = CSVClean (dictPerf["start"]["timestamp"]["time"])
else:
strTimeStamp = "no time in timestamp"
if "timesecs" in dictPerf["start"]["timestamp"]:
iExcelTime = int(dictPerf["start"]["timestamp"]["timesecs"])
# Excel timestamps are in days, with fraction as time and start 1/1/1900
# Epoc timestamps are in seconds since 1/1/1970
# 86400 seconds in 24 hours. 70 years with 17 leap days is 25569 days
iExcelTime = iExcelTime/86400+25569
else:
iExcelTime = -3
else:
strTimeStamp = -4
if "end" in dictPerf:
if "sum" in dictPerf["end"]:
if "bits_per_second" in dictPerf["end"]["sum"]:
iTransfer = float(dictPerf["end"]["sum"]["bits_per_second"])
iTransfer = iTransfer/1000 # Convert bps to kbps
else:
iTransfer = -5
if "seconds" in dictPerf["end"]["sum"]:
iDuration = float(dictPerf["end"]["sum"]["seconds"])
else:
iDuration = -6
if "jitter_ms" in dictPerf["end"]["sum"]:
iJitter = float(dictPerf["end"]["sum"]["jitter_ms"])
else:
iJitter = -7
if "lost_packets" in dictPerf["end"]["sum"]:
iLostPackets = int(dictPerf["end"]["sum"]["lost_packets"])
else:
iLostPackets = -8
if "packets" in dictPerf["end"]["sum"]:
iTotalPackets = int(dictPerf["end"]["sum"]["packets"])
else:
iTotalPackets = -9
if "lost_percent" in dictPerf["end"]["sum"]:
iLostPercent = float(dictPerf["end"]["sum"]["lost_percent"])
else:
iLostPercent = -10
else:
iTransfer = -19
if "cpu_utilization_percent" in dictPerf["end"]:
if "host_total" in dictPerf["end"]["cpu_utilization_percent"]:
iHostCPU = float(dictPerf["end"]["cpu_utilization_percent"]["host_total"])
else:
iHostCPU = -20
else:
iHostCPU = -21
if "cpu_utilization_percent" in dictPerf["end"]:
if "remote_total" in dictPerf["end"]["cpu_utilization_percent"]:
iRemoteCPU = float(dictPerf["end"]["cpu_utilization_percent"]["remote_total"])
else:
iRemoteCPU = -22
else:
iRemoteCPU = -23
LogEntry("processed entry to {} on {}".format(
strRemoteHost, strTimeStamp))
objFileOut.write("{},{},{},{},{},{},{},{},{},{},{},{},{},{}\n".format(
strSysInfo, strVersion, strRemoteHost, strRemotePort, strTimeStamp, iExcelTime, iHostCPU,
iRemoteCPU,iTransfer,iDuration,iJitter,iLostPackets,iTotalPackets,iLostPercent))
iInstance += 1
LogEntry("Done")
objFileIn.close()
objFileOut.close()
objLogOut.close()
if __name__ == '__main__':
main()