add limit of test plan dealing function
This commit is contained in:
parent
e585c7052e
commit
5e869eccfa
|
@ -80,7 +80,9 @@ function getPointModelList(allocation,chartPoint){
|
|||
}
|
||||
return pointModelList;
|
||||
}
|
||||
|
||||
function getLimitValue(){
|
||||
|
||||
}
|
||||
function start() {
|
||||
var scriptList = new Array();
|
||||
var ipList = new Array();
|
||||
|
@ -119,9 +121,9 @@ function start() {
|
|||
}
|
||||
|
||||
//collect limit
|
||||
|
||||
var limitModel = getLimitValue();
|
||||
var name = $("#testConfigurationName").val();
|
||||
var testPlan = new TestPlanRequestModel(scriptList, ipList, name);
|
||||
var testPlan = new TestPlanRequestModel(scriptList, ipList, name, limitModel);
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url : "runTestPlan",
|
||||
|
|
|
@ -184,6 +184,7 @@ function loadSchedulePlot2() {
|
|||
time += TimeInterval;
|
||||
options.series[0].data.push([time,i]);
|
||||
}
|
||||
|
||||
var chart = new Highcharts.Chart(options);
|
||||
currentChart = chart;
|
||||
}
|
Loading…
Reference in New Issue