blob: f4be0f76168bfc9311fd990943e2bc09a2af2490 [file] [log] [blame]
cameron@onlab.us946d99c2015-07-08 15:34:37 -07001# ScaleOutTemplate -> flowTP
2#
3# CASE1 starts number of nodes specified in param file
4#
5# cameron@onlab.us
6
7import sys
8import os.path
9
10
11class SCPFflowTp1g:
12
13 def __init__( self ):
14 self.default = ''
15
Jon Hall4ba53f02015-07-29 13:07:41 -070016 def CASE1( self, main ):
cameron@onlab.us946d99c2015-07-08 15:34:37 -070017
18 import time
19 global init
20 try:
21 if type(init) is not bool:
22 init = False
23 except NameError:
24 init = False
25
26 #Load values from params file
27 checkoutBranch = main.params[ 'GIT' ][ 'checkout' ]
28 gitPull = main.params[ 'GIT' ][ 'autopull' ]
29 cellName = main.params[ 'ENV' ][ 'cellName' ]
30 Apps = main.params[ 'ENV' ][ 'cellApps' ]
31 BENCHUser = main.params[ 'BENCH' ][ 'user' ]
cameron@onlab.usb3aa4982015-07-13 15:20:41 -070032 BENCHIp = main.params[ 'BENCH' ][ 'ip1' ]
33 main.maxNodes = int(main.params[ 'max' ])
cameron@onlab.us946d99c2015-07-08 15:34:37 -070034 skipMvn = main.params[ 'TEST' ][ 'skipCleanInstall' ]
Jon Hall4ba53f02015-07-29 13:07:41 -070035 cellName = main.params[ 'ENV' ][ 'cellName' ]
36
cameron@onlab.us946d99c2015-07-08 15:34:37 -070037 main.log.info("==========DEBUG VERSION 3===========")
38
cameron@onlab.us946d99c2015-07-08 15:34:37 -070039 # -- INIT SECTION, ONLY RUNS ONCE -- #
40 if init == False:
41 init = True
42 global clusterCount #number of nodes running
43 global ONOSIp #list of ONOS IP addresses
44 global scale
45 global commit
46
47 clusterCount = 0
48 ONOSIp = [ 0 ]
49 scale = (main.params[ 'SCALE' ]).split(",")
50 clusterCount = int(scale[0])
51
52 #Populate ONOSIp with ips from params
cameron@onlab.usb3aa4982015-07-13 15:20:41 -070053 for i in range(1, main.maxNodes + 1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -070054 ipString = 'ip' + str(i)
55 ONOSIp.append(main.params[ 'CTRL' ][ ipString ])
56
57 ONOSIp = [0]
58 ONOSIp.extend(main.ONOSbench.getOnosIps())
59
60 #mvn clean install, for debugging set param 'skipCleanInstall' to yes to speed up test
61 if skipMvn != "yes":
62 mvnResult = main.ONOSbench.cleanInstall()
63
64 #git
65 main.step( "Git checkout and pull " + checkoutBranch )
66 if gitPull == 'on':
67 checkoutResult = main.ONOSbench.gitCheckout( checkoutBranch )
68 pullResult = main.ONOSbench.gitPull()
69
70 else:
71 checkoutResult = main.TRUE
72 pullResult = main.TRUE
73 main.log.info( "Skipped git checkout and pull" )
Jon Hall4ba53f02015-07-29 13:07:41 -070074
cameron@onlab.us946d99c2015-07-08 15:34:37 -070075 commit = main.ONOSbench.getVersion()
76 commit = (commit.split(" "))[1]
77
suibine1e58772015-07-15 09:52:59 -070078 resultsDB = open("/tmp/flowTP1gDB", "w+")
cameron@onlab.us946d99c2015-07-08 15:34:37 -070079 resultsDB.close()
80
81 # -- END OF INIT SECTION --#
82
83 clusterCount = int(scale[0])
84 scale.remove(scale[0])
85 main.log.info("CLUSTER COUNT: " + str(clusterCount))
86
Jon Hall4ba53f02015-07-29 13:07:41 -070087 #kill off all onos processes
Jon Hall6509dbf2016-06-21 17:01:17 -070088 main.step("Safety check, killing all ONOS processes")
89 main.step("before initiating environment setup")
cameron@onlab.usb3aa4982015-07-13 15:20:41 -070090 for node in range(1, main.maxNodes + 1):
You Wangb98a9fa2017-02-15 17:27:42 -080091 main.ONOSbench.onosStop(ONOSIp[node])
92 main.ONOSbench.onosKill(ONOSIp[node])
cameron@onlab.us946d99c2015-07-08 15:34:37 -070093
94 #Uninstall everywhere
Jon Hall6509dbf2016-06-21 17:01:17 -070095 main.step( "Cleaning Enviornment..." )
cameron@onlab.usb3aa4982015-07-13 15:20:41 -070096 for i in range(1, main.maxNodes + 1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -070097 main.log.info(" Uninstalling ONOS " + str(i) )
98 main.ONOSbench.onosUninstall( ONOSIp[i] )
99
100 #construct the cell file
101 main.log.info("Creating cell file")
102 cellIp = []
103 for node in range (1, clusterCount + 1):
Jon Hall4ba53f02015-07-29 13:07:41 -0700104 cellIp.append(ONOSIp[node])
105
Devin Lim461f0872017-06-05 16:49:33 -0700106 main.ONOSbench.createCellFile(BENCHIp, cellName, "localhost",
107 str(Apps), cellIp, main.ONOScli1.user_name)
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700108 main.log.info("Cell Ip list: " + str(cellIp))
Jon Hall4ba53f02015-07-29 13:07:41 -0700109
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700110 main.step( "Set Cell" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700111 main.ONOSbench.setCell(cellName)
112
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700113 main.step( "Creating ONOS package" )
Jon Hallbd60ea02016-08-23 10:03:59 -0700114 packageResult = main.ONOSbench.buckBuild()
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700115
116 main.step( "verify cells" )
117 verifyCellResult = main.ONOSbench.verifyCell()
118
119 main.log.report( "Initializeing " + str( clusterCount ) + " node cluster." )
120 for node in range(1, clusterCount + 1):
121 main.log.info("Starting ONOS " + str(node) + " at IP: " + ONOSIp[node])
122 main.ONOSbench.onosInstall( ONOSIp[node])
123
124 for node in range(1, clusterCount + 1):
You Wangf5de25b2017-01-06 15:13:01 -0800125 secureSshResult = main.ONOSbench.onosSecureSSH( ONOSIp[node] )
126
127 for node in range(1, clusterCount + 1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700128 for i in range( 2 ):
129 isup = main.ONOSbench.isup( ONOSIp[node] )
130 if isup:
131 main.log.info("ONOS " + str(node) + " is up\n")
132 break
133 if not isup:
134 main.log.report( "ONOS " + str(node) + " didn't start!" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700135
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700136 for node in range(1, clusterCount + 1):
Devin Lim28706842017-06-08 10:23:48 -0700137 exec "a = main.ONOScli%s.startOnosCli" %str(node)
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700138 a(ONOSIp[node])
Jon Hall4ba53f02015-07-29 13:07:41 -0700139
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700140 main.log.info("Startup sequence complete")
Jon Hall4ba53f02015-07-29 13:07:41 -0700141 main.ONOSbench.logReport(ONOSIp[1], ["ERROR", "WARNING", "EXCEPT"], outputMode="d")
Chiyu Chengef109502016-11-21 15:51:38 -0800142
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700143 def CASE2( self, main ):
144 #
Jon Hall4ba53f02015-07-29 13:07:41 -0700145 # This is the flow TP test
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700146 #
Jon Hall4ba53f02015-07-29 13:07:41 -0700147 import os.path
148 import numpy
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700149 import math
Jon Hall4ba53f02015-07-29 13:07:41 -0700150 import time
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700151 import datetime
152 import traceback
153
154 global currentNeighbors
155 try:
156 currentNeighbors
157 except:
158 currentNeighbors = (main.params[ 'TEST' ][ 'neighbors' ]).split(",")[0]
159 else:
160 if currentNeighbors == "r": #reset
161 currentNeighbors = "0"
162 else:
163 currentNeighbors = "a"
164
165 testCMD = [ 0,0,0,0 ]
166 warmUp = int(main.params[ 'TEST' ][ 'warmUp' ])
167 sampleSize = int(main.params[ 'TEST' ][ 'sampleSize' ])
168 switches = int(main.params[ 'TEST' ][ 'switches' ])
169 neighborList = (main.params[ 'TEST' ][ 'neighbors' ]).split(",")
170 testCMD[0] = main.params[ 'TEST' ][ 'testCMD0' ]
171 testCMD[1] = main.params[ 'TEST' ][ 'testCMD1' ]
cameron@onlab.usb3aa4982015-07-13 15:20:41 -0700172 main.maxNodes = main.params[ 'max' ]
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700173 cooldown = main.params[ 'TEST' ][ 'cooldown' ]
174 cellName = main.params[ 'ENV' ][ 'cellName' ]
175 BENCHIp = main.params[ 'BENCH' ][ 'ip1' ]
176 BENCHUser = main.params[ 'BENCH' ][ 'user' ]
177 MN1Ip = main.params[ 'MN' ][ 'ip1' ]
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700178 homeDir = os.path.expanduser('~')
179 flowRuleBackup = str(main.params[ 'TEST' ][ 'enableFlowRuleStoreBackup' ])
180 main.log.info("Flow Rule Backup is set to:" + flowRuleBackup)
181
Jon Hall4ba53f02015-07-29 13:07:41 -0700182 servers = str(clusterCount)
183
184 if clusterCount == 1:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700185 neighborList = ['0']
186 currentNeighbors = "r"
187 else:
188 if currentNeighbors == "a":
189 neighborList = [str(clusterCount-1)]
190 currentNeighbors = "r"
191 else:
Jon Hall4ba53f02015-07-29 13:07:41 -0700192 neighborList = ['0']
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700193
194 main.log.info("neightborlist: " + str(neighborList))
195
196 ts = time.time()
197 st = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')
198
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700199 for n in neighborList:
Jon Hall6509dbf2016-06-21 17:01:17 -0700200 main.step("\tSTARTING TEST")
201 main.step("\tLOADING FROM SERVERS: \t" + str(clusterCount) )
202 main.step("\tNEIGHBORS:\t" + n )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700203 main.log.info("=============================================================")
204 main.log.info("=============================================================")
205 #write file to configure nil link
206 ipCSV = ""
cameron@onlab.usb3aa4982015-07-13 15:20:41 -0700207 for i in range (1, int(main.maxNodes) + 1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700208 tempstr = "ip" + str(i)
Jon Hall4ba53f02015-07-29 13:07:41 -0700209 ipCSV += main.params[ 'CTRL' ][ tempstr ]
cameron@onlab.usb3aa4982015-07-13 15:20:41 -0700210 if i < int(main.maxNodes):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700211 ipCSV +=","
Jon Hall4ba53f02015-07-29 13:07:41 -0700212
You Wangffff6f62017-06-02 17:03:10 -0700213 main.ONOSbench.onosCfgSet(ONOSIp[1], "org.onosproject.store.flow.impl.DistributedFlowRuleStore", "backupCount 1")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700214 for i in range(3):
215 main.ONOSbench.onosCfgSet(ONOSIp[1], "org.onosproject.provider.nil.NullProviders", "deviceCount 35")
216 main.ONOSbench.onosCfgSet(ONOSIp[1], "org.onosproject.provider.nil.NullProviders", "topoShape linear")
Jon Hall4ba53f02015-07-29 13:07:41 -0700217 main.ONOSbench.onosCfgSet(ONOSIp[1], "org.onosproject.provider.nil.NullProviders", "enabled true")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700218
219 time.sleep(5)
220 main.ONOSbench.handle.sendline("onos $OC1 summary")
221 main.ONOSbench.handle.expect(":~")
222 check = main.ONOSbench.handle.before
Jon Hall4ba53f02015-07-29 13:07:41 -0700223 main.log.info("\nStart up check: \n" + check + "\n")
224 if "SCC(s)=1," in check:
suibin zhanga3746bf2015-09-05 09:36:39 -0700225 main.ONOSbench.handle.sendline( "onos $OC1 balance-masters" )
suibin zhang45efc1b2015-09-04 16:48:10 -0700226 main.ONOSbench.handle.expect( ":~" )
227 time.sleep(5)
228 main.ONOSbench.handle.sendline( "onos $OC1 roles ")
229 main.ONOSbench.handle.expect ( ":~" )
230 main.log.info( "switch masterships:" + str( main.ONOSbench.handle.before ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700231 break
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700232 time.sleep(5)
Jon Hall4ba53f02015-07-29 13:07:41 -0700233
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700234 #devide flows
235 flows = int(main.params[ 'TEST' ][ 'flows' ])
236 main.log.info("Flow Target = " + str(flows))
237
238 flows = (flows *max(int(n)+1,int(servers)))/((int(n) + 1)*int(servers)*(switches))
239
240 main.log.info("Flows per switch = " + str(flows))
241
242 #build list of servers in "$OC1, $OC2...." format
243 serverEnvVars = ""
244 for i in range (1,int(servers)+1):
245 serverEnvVars += ("-s " + ONOSIp[i] + " ")
Jon Hall4ba53f02015-07-29 13:07:41 -0700246
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700247 data = [[""]*int(servers)]*int(sampleSize)
248 maxes = [""]*int(sampleSize)
249
250 flowCMD = "python3 " + homeDir + "/onos/tools/test/bin/"
251 flowCMD += testCMD[0] + " " + str(flows) + " " + testCMD[1]
Jon Hall4ba53f02015-07-29 13:07:41 -0700252 flowCMD += " " + str(n) + " " + str(serverEnvVars) + "-j"
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700253
254 main.log.info(flowCMD)
255 #time.sleep(60)
Jon Hall4ba53f02015-07-29 13:07:41 -0700256
257 for test in range(0, warmUp + sampleSize):
258 if test < warmUp:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700259 main.log.info("Warm up " + str(test + 1) + " of " + str(warmUp))
Jon Hall4ba53f02015-07-29 13:07:41 -0700260 else:
261 main.log.info("====== Test run: " + str(test-warmUp+1) + " ======")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700262
263 main.ONOSbench.handle.sendline(flowCMD)
264 main.ONOSbench.handle.expect(":~")
265 rawResult = main.ONOSbench.handle.before
266 main.log.info("Raw results: \n" + rawResult + "\n")
267
Jon Hall4ba53f02015-07-29 13:07:41 -0700268 if "failed" in rawResult:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700269 main.log.report("FLOW_TESTER.PY FAILURE")
270 main.log.report( " \n" + rawResult + " \n")
YPZhang325822f2016-06-17 16:01:45 -0700271 for i in range(1, clusterCount+1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700272 main.log.report("=======================================================")
Jon Hall4ba53f02015-07-29 13:07:41 -0700273 main.log.report(" ONOS " + str(i) + "LOG REPORT")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700274 main.ONOSbench.logReport(ONOSIp[i], ["ERROR", "WARNING", "EXCEPT"], outputMode="d")
Jon Hall4ba53f02015-07-29 13:07:41 -0700275 main.ONOSbench.handle.sendline("onos $OC1 flows")
276 main.ONOSbench.handle.expect(":~")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700277 main.log.info(main.ONOSbench.handle.before)
278
279 break
Jon Hall4ba53f02015-07-29 13:07:41 -0700280
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700281 ########################################################################################
282 result = [""]*(clusterCount)
Jon Hall4ba53f02015-07-29 13:07:41 -0700283
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700284 #print("rawResult: " + rawResult)
285
286 rawResult = rawResult.splitlines()
287
Jon Hall4ba53f02015-07-29 13:07:41 -0700288 for node in range(1, clusterCount + 1):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700289 for line in rawResult:
Jon Hall4ba53f02015-07-29 13:07:41 -0700290 #print("line: " + line)
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700291 if ONOSIp[node] in line and "server" in line:
Jon Hall4ba53f02015-07-29 13:07:41 -0700292 temp = line.split(" ")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700293 for word in temp:
Jon Hall4ba53f02015-07-29 13:07:41 -0700294 #print ("word: " + word)
295 if "elapsed" in repr(word):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700296 index = temp.index(word) + 1
297 myParsed = (temp[index]).replace(",","")
298 myParsed = myParsed.replace("}","")
299 myParsed = int(myParsed)
300 result[node-1] = myParsed
301 main.log.info( ONOSIp[node] + " : " + str(myParsed))
Jon Hall4ba53f02015-07-29 13:07:41 -0700302 break
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700303
304 if test >= warmUp:
Jon Hall4ba53f02015-07-29 13:07:41 -0700305 for i in result:
306 if i == "":
cameron@onlab.usb3aa4982015-07-13 15:20:41 -0700307 main.log.error("Missing data point, critical failure incoming")
308
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700309 print result
310 maxes[test-warmUp] = max(result)
311 main.log.info("Data collection iteration: " + str(test-warmUp) + " of " + str(sampleSize))
Jon Hall4ba53f02015-07-29 13:07:41 -0700312 main.log.info("Throughput time: " + str(maxes[test-warmUp]) + "(ms)")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700313
314 data[test-warmUp] = result
315
Jon Hall4ba53f02015-07-29 13:07:41 -0700316 # wait for flows = 0
317 for checkCount in range(0,5):
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700318 time.sleep(10)
319 main.ONOSbench.handle.sendline("onos $OC1 summary")
320 main.ONOSbench.handle.expect(":~")
321 flowCheck = main.ONOSbench.handle.before
Jon Hall4ba53f02015-07-29 13:07:41 -0700322 if "flows=0," in flowCheck:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700323 main.log.info("Flows removed")
324 break
Jon Hall4ba53f02015-07-29 13:07:41 -0700325 else:
326 for line in flowCheck.splitlines():
327 if "flows=" in line:
328 main.log.info("Current Summary: " + line)
329 if checkCount == 2:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700330 main.log.info("Flows are stuck, moving on ")
331
332
333 time.sleep(5)
Jon Hall4ba53f02015-07-29 13:07:41 -0700334
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700335 main.log.info("raw data: " + str(data))
336 main.log.info("maxes:" + str(maxes))
337
Jon Hall4ba53f02015-07-29 13:07:41 -0700338
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700339 # report data
340 print("")
341 main.log.info("\t Results (measurments are in milliseconds)")
342 print("")
343
344 nodeString = ""
345 for i in range(1, int(servers) + 1):
Jon Hall4ba53f02015-07-29 13:07:41 -0700346 nodeString += ("\tNode " + str(i))
347
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700348 for test in range(0, sampleSize ):
349 main.log.info("\t Test iteration " + str(test + 1) )
350 main.log.info("\t------------------")
Jon Hall4ba53f02015-07-29 13:07:41 -0700351 main.log.info(nodeString)
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700352 resultString = ""
353
354 for i in range(0, int(servers) ):
Jon Hall4ba53f02015-07-29 13:07:41 -0700355 resultString += ("\t" + str(data[test][i]) )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700356 main.log.info(resultString)
357
358 print("\n")
359
360 avgOfMaxes = numpy.mean(maxes)
361 main.log.info("Average of max value from each test iteration: " + str(avgOfMaxes))
362
363 stdOfMaxes = numpy.std(maxes)
Jon Hall4ba53f02015-07-29 13:07:41 -0700364 main.log.info("Standard Deviation of max values: " + str(stdOfMaxes))
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700365 print("\n\n")
366
367 avgTP = int(main.params[ 'TEST' ][ 'flows' ]) / avgOfMaxes #result in kflows/second
Jon Hall4ba53f02015-07-29 13:07:41 -0700368
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700369 tp = []
Jon Hall4ba53f02015-07-29 13:07:41 -0700370 for i in maxes:
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700371 tp.append((int(main.params[ 'TEST' ][ 'flows' ]) / i ))
372
373 stdTP = numpy.std(tp)
374
375 main.log.info("Average thoughput: " + str(avgTP) + " Kflows/second" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700376 main.log.info("Standard deviation of throughput: " + str(stdTP) + " Kflows/second")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700377
suibin584c0702015-07-14 15:57:27 -0700378 resultsLog = open("/tmp/flowTP1gDB","a")
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700379 resultString = ("'" + commit + "',")
380 resultString += ("'1gig',")
381 resultString += ((main.params[ 'TEST' ][ 'flows' ]) + ",")
382 resultString += (str(clusterCount) + ",")
383 resultString += (str(n) + ",")
384 resultString += (str(avgTP) + "," + str(stdTP) + "\n")
Jon Hall4ba53f02015-07-29 13:07:41 -0700385 resultsLog.write(resultString)
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700386 resultsLog.close()
Jon Hall4ba53f02015-07-29 13:07:41 -0700387
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700388 main.log.report("Result line to file: " + resultString)
Jon Hall4ba53f02015-07-29 13:07:41 -0700389
390 main.ONOSbench.logReport(ONOSIp[1], ["ERROR", "WARNING", "EXCEPT"], outputMode="d")