mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Fixes number of flows in ajax requests
This commit is contained in:
parent
e12c703464
commit
b3be99e97b
1 changed files with 1 additions and 1 deletions
|
|
@ -1030,7 +1030,7 @@ var populatePeersPerHostByApplication = function(host, proto_id){
|
|||
var addr_td = $("td:eq(1)", row[0]);
|
||||
var label_td = $("td:eq(0)", row[0]);
|
||||
var addr = addr_td.text();
|
||||
var num_flows = $("td:eq(4)", row[0]).text();
|
||||
var num_flows = $("td:eq(6)", row[0]).text();
|
||||
label_td.append(' <a onclick="$(\'#historical-apps-container\').attr(\'l7_proto_id\', \'' + proto_id + '\');populateFlowsPerHostPairByApplicationTable(\'' + host +'\',\'' + addr + '\',\'' + proto_id + '\',\'' + num_flows +'\');"><i class="fa fa-tasks" title="' + $('#historical-apps-container').attr("l7_proto") + ' protocol flows between ' + host + ' and ' + addr + '"></i></a>');
|
||||
return row;
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue