日志特殊字段私有字段增加排序,截取过长调用配置方法,流量统计处理带宽数据

This commit is contained in:
zhanghongqing
2018-10-31 19:48:27 +08:00
parent 1f39824324
commit fd466e6c52
38 changed files with 322 additions and 327 deletions

View File

@@ -142,7 +142,7 @@
<div class="main_left fl"> <div class="main_left fl">
<div class="left_1"> <div class="left_1">
<div class="main_title"> <div class="main_title">
<spring:message code="traffic_ipactive_chart"/>&nbsp;&nbsp;<a href="${ctx}/dashboard/traffic/userBehavior"><i class="fa fa-line-chart"></i></a> <a href="javascipt:void(0)" onclick="ipActiveList();return false;"><i class="fa fa-refresh"></i></a> <spring:message code="traffic_ipactive_chart"/>&nbsp;&nbsp;<a href="${ctx}/dashboard/ipActiveList"><i class="fa fa-line-chart"></i></a> <a href="javascipt:void(0)" onclick="ipActiveList();return false;"><i class="fa fa-refresh"></i></a>
</div> </div>
<!-- 活跃IP图 --> <div id="chart_main" style="width:100%;height:400px;"></div> <!-- 活跃IP图 --> <div id="chart_main" style="width:100%;height:400px;"></div>
</div> </div>
@@ -394,7 +394,7 @@ $(document).ready(function(){
ajaxinfo(); ajaxinfo();
setInterval(function(){ setInterval(function(){
ajaxinfo(); ajaxinfo();
},20000); },30000);
protocolList();//协议统计 protocolList();//协议统计
ipActiveList();//活跃IP ipActiveList();//活跃IP
@@ -448,61 +448,48 @@ function ajaxinfo(){
if(liveConnNum==null||liveConnNum==""){ if(liveConnNum==null||liveConnNum==""){
liveConnNum=0; liveConnNum=0;
} }
dataScroll(".numberRun",Math.floor(loopConnNum)); dataScroll(".numberRun",Math.round(loopConnNum));
dataScroll(".numberRun1",Math.floor(rejectNum)); dataScroll(".numberRun1",Math.round(rejectNum));
dataScroll(".numberRun2",Math.floor(monitorNum)); dataScroll(".numberRun2",Math.round(monitorNum));
dataScroll(".numberRun3",Math.floor(dropConnNum)); dataScroll(".numberRun3",Math.round(dropConnNum));
dataScroll(".numberRun5",Math.floor(newUniConnNum)); dataScroll(".numberRun5",Math.round(newUniConnNum));
dataScroll(".numberRun6",Math.floor(liveConnNum)); dataScroll(".numberRun6",Math.round(liveConnNum));
var bandwidth=data.bandwidth;
var bandwidthK=bandwidth/1024;
var bandwidthM=bandwidthK/1024;
var bandwidthG=bandwidthG/1024;
if(bandwidth==null||bandwidth==""){
bandwidth=0;
}
if(bandwidthK>10){
bandwidth=bandwidthK;
$(".numberRun4-unit").text(" Kbps");
}
if(bandwidthM>10){
bandwidth=bandwidthM;
$(".numberRun4-unit").text(" Mbps");
}
if(bandwidthG>10){
bandwidth=bandwidthG;
$(".numberRun4-unit").text(" Mbps");
}
dataScroll(".numberRun4",Math.floor(bandwidth));
//计算带宽进出口流量百分比 //计算带宽进出口流量百分比
// $("#c2sColor").removeClass(); // $("#c2sColor").removeClass();
// $("#s2cColor").removeClass(); // $("#s2cColor").removeClass();
var inoctetsNum=Math.floor(data.inoctetsNum); var inoctetsNum=Math.round(data.inoctetsNum);
var inoctetsNumK=inoctetsNum/1024; var inoctetsNumK=inoctetsNum/1024;
var inoctetsNumM=inoctetsNumK/1024; var inoctetsNumM=inoctetsNumK/1024;
var inoctetsNumG=inoctetsNumM/1024; var inoctetsNumG=inoctetsNumM/1024;
var outoctetsNum=Math.floor(data.outoctetsNum); var outoctetsNum=Math.round(data.outoctetsNum);
var outoctetsNumK=outoctetsNum/1024; var outoctetsNumK=outoctetsNum/1024;
var outoctetsNumM=outoctetsNumK/1024; var outoctetsNumM=outoctetsNumK/1024;
var outoctetsNumG=outoctetsNumM/1024; var outoctetsNumG=outoctetsNumM/1024;
var unit="bps"; var unit="bps";
if(inoctetsNumK>10){ var bandwidth=inoctetsNum+outoctetsNum;
inoctetsNum=inoctetsNumK; if(inoctetsNumK>1||outoctetsNumK>1){
outoctetsNum=outoctetsNumK; inoctetsNum=inoctetsNumK.toFixed(2);
outoctetsNum=outoctetsNumK.toFixed(2);
unit="Kbps"; unit="Kbps";
}; };
if(inoctetsNumM>10){ if(inoctetsNumM>1||outoctetsNumM>1){
inoctetsNum=inoctetsNumM; inoctetsNum=inoctetsNumM.toFixed(2);
outoctetsNum=outoctetsNumM; outoctetsNum=outoctetsNumM.toFixed(2);
unit="Mbps"; unit="Mbps";
}; };
if(inoctetsNumG>10){ if(inoctetsNumG>1||outoctetsNumG>1){
inoctetsNum=inoctetsNumG; inoctetsNum=inoctetsNumG.toFixed(2);
outoctetsNum=outoctetsNumG; outoctetsNum=outoctetsNumG.toFixed(2);
unit="Mbps"; unit="Gbps";
}; };
$(".c2sNum").text(Math.floor(inoctetsNum)+" "+unit); $(".c2sNum").text(inoctetsNum);
$(".s2cNum").text(Math.floor(outoctetsNum)+" "+unit); $(".s2cNum").text(outoctetsNum);
$(".numberRun4-unit").text(" "+unit);
bandwidth=parseFloat(inoctetsNum)+parseFloat(outoctetsNum);
dataScroll2(".numberRun4",bandwidth);
/* if(data.inoctetsNum!=c2s){ /* if(data.inoctetsNum!=c2s){
$(".c2sNum").text(data.c2sNum); $(".c2sNum").text(data.c2sNum);
$(".s2cNum").text(100-data.c2sNum); $(".s2cNum").text(100-data.c2sNum);
@@ -533,6 +520,14 @@ function dataScroll(index,nums){
var numRun = $(index).numberAnimate({num:1, speed:3000, symbol:","}); var numRun = $(index).numberAnimate({num:1, speed:3000, symbol:","});
numRun.resetData(nums); numRun.resetData(nums);
} }
function dataScroll2(index,nums){
if(typeof nums=='undefined'||nums==null||nums==""){
nums=0;
}
var num=nums;
var numRun = $(index).numberAnimate({num:1, speed:3000, symbol:",",dot:2});
numRun.resetData(nums);
}
//切换下拉列表-操作系统与浏览器 //切换下拉列表-操作系统与浏览器
function uaSelectChange(){ function uaSelectChange(){
@@ -624,11 +619,11 @@ function portActiveList(){
tr += "<td class='list_c1' style='color:#fff' title='"+itemObj.port+"'>"+itemObj.port+"</td>"; tr += "<td class='list_c1' style='color:#fff' title='"+itemObj.port+"'>"+itemObj.port+"</td>";
tr += "<td class='list_c2' style='color:#fff'>"+count+"</td>"; tr += "<td class='list_c2' style='color:#fff'>"+count+"</td>";
if(preCount<count){ if(preCount<count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:green'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:red'/>"+"</td></tr>";
}else if(preCount>count){ }else if(preCount>count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:red'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:green'/>"+"</td></tr>";
}else{ }else{
tr += "<td class='list_c3'>"+""+"</td></tr>"; tr += "<td class='list_c3'>"+"--"+"</td></tr>";
} }
$("#tbodyDataPort").prepend(tr); $("#tbodyDataPort").prepend(tr);
}) })
@@ -700,11 +695,11 @@ function systemList(){
tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>"; tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>";
tr += "<td class='list_c2' style='color:#fff' title='"+itemObj.osType+"'>"+itemObj.osType+"</td>"; tr += "<td class='list_c2' style='color:#fff' title='"+itemObj.osType+"'>"+itemObj.osType+"</td>";
if(preCount<count){ if(preCount<count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:green'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:red'/>"+"</td></tr>";
}else if(preCount>count){ }else if(preCount>count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:red'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:green'/>"+"</td></tr>";
}else{ }else{
tr += "<td class='list_c3'>"+""+"</td></tr>"; tr += "<td class='list_c3'>"+"--"+"</td></tr>";
} }
n=n-1; n=n-1;
$("#tbodyData1").prepend(tr); $("#tbodyData1").prepend(tr);
@@ -796,11 +791,11 @@ function browserList() {
tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>"; tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>";
tr += "<td class='list_c2' style='color:#fff' title='"+itemObj.bsType+"'>"+itemObj.bsType.substring(0,18)+"</td>"; tr += "<td class='list_c2' style='color:#fff' title='"+itemObj.bsType+"'>"+itemObj.bsType.substring(0,18)+"</td>";
if(preCount<count){ if(preCount<count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:green'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:red'/>"+"</td></tr>";
}else if(preCount>count){ }else if(preCount>count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:red'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:green'/>"+"</td></tr>";
}else{ }else{
tr += "<td class='list_c3'>"+""+"</td></tr>"; tr += "<td class='list_c3'>"+"--"+"</td></tr>";
} }
$("#tbodyData1").prepend(tr); $("#tbodyData1").prepend(tr);
n=n-1; n=n-1;
@@ -851,11 +846,11 @@ function websiteList() {
tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>"; tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>";
tr += "<td class='list_c2' style='color:#fff' title="+itemObj.websiteService+">"+itemObj.websiteService.substring(0,18)+"</td>"; tr += "<td class='list_c2' style='color:#fff' title="+itemObj.websiteService+">"+itemObj.websiteService.substring(0,18)+"</td>";
if(itemObj.preCount<itemObj.count){ if(itemObj.preCount<itemObj.count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:green'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-up' style='color:red'/>"+"</td></tr>";
}else if(itemObj.preCount>itemObj.count){ }else if(itemObj.preCount>itemObj.count){
tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:red'/>"+"</td></tr>"; tr += "<td class='list_c3'>"+"<i class='fa fa-arrow-down' style='color:green'/>"+"</td></tr>";
}else{ }else{
tr += "<td class='list_c3'>"+""+"</td></tr>"; tr += "<td class='list_c3'>"+"--"+"</td></tr>";
} }
$("#tbodyData2").prepend(tr); $("#tbodyData2").prepend(tr);

View File

@@ -179,7 +179,7 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>

View File

@@ -170,7 +170,7 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -168,7 +168,7 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
@@ -189,9 +189,9 @@
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
<th class="sort-column d_subscribe_id"><spring:message code='d_subscribe_id'/></th> <th class="sort-column d_subscribe_id"><spring:message code='d_subscribe_id'/></th>
<%-- <th class="sort-column scene_file"><spring:message code='scene_file'/></th> --%> <%-- <th class="sort-column scene_file"><spring:message code='scene_file'/></th> --%>
<th><spring:message code='message_type'/></th> <th class="sort-column type"><spring:message code='message_type'/></th>
<th><spring:message code='as'/></th> <th class="sort-column as_num"><spring:message code='as'/></th>
<th><spring:message code='route'/></th> <th class="sort-column route"><spring:message code='route'/></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View File

@@ -160,21 +160,21 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='attack_type'/></th> <th class="sort-column attack_type"><spring:message code='attack_type'/></th>
<th><spring:message code='attack_start_time'/></th> <th class="sort-column attack_start_time"><spring:message code='attack_start_time'/></th>
<th><spring:message code='last_attack_time'/></th> <th class="sort-column last_attack_time"><spring:message code='last_attack_time'/></th>
<th><spring:message code='attack_max_pps'/></th> <th class="sort-column attack_max_pps"><spring:message code='attack_max_pps'/></th>
<th><spring:message code='attack_max_bps'/></th> <th class="sort-column attack_max_bps"><spring:message code='attack_max_bps'/></th>
<%-- <th><spring:message code='attack_total_pkt'/></th> --%> <%-- <th><spring:message code='attack_total_pkt'/></th> --%>
<%-- <th><spring:message code='attack_total_byte'/></th> --%> <%-- <th><spring:message code='attack_total_byte'/></th> --%>
<%-- <th><spring:message code='is_blcok'/></th> --%> <%-- <th><spring:message code='is_blcok'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='protocol'/></th> <th class="sort-column trans_proto"><spring:message code='protocol'/></th>
<th class="sort-column addr_type"><spring:message code='addr_type'/></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th class="sort-column d_ip"><spring:message code="server_ip"/></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<%-- <th class="sort-column s_ip"><spring:message code="client_ip"/></th> --%> <%-- <th class="sort-column s_ip"><spring:message code="client_ip"/></th> --%>

View File

@@ -177,7 +177,7 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>

View File

@@ -171,12 +171,12 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='ftp_url'/></th> <th class="sort-column ftp_url"><spring:message code='ftp_url'/></th>
<th><spring:message code='ftp_content'/></th> <th class="sort-column ftp_content"><spring:message code='ftp_content'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -202,11 +202,11 @@
<tr> <tr>
<th><input type="checkbox" class="i-checks" id="checkAll"></th> <th><input type="checkbox" class="i-checks" id="checkAll"></th>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th> URL &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th> <th class="sort-column url"> URL &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
<%-- <th><spring:message code="req_hdr_key"/></th> <%-- <th><spring:message code="req_hdr_key"/></th>
<th><spring:message code="req_hdr_file"/></th> <th><spring:message code="req_hdr_file"/></th>
<th><spring:message code="req_body_key"/></th> <th><spring:message code="req_body_key"/></th>
@@ -215,7 +215,7 @@
<th><spring:message code="res_hdr_file"/></th> <th><spring:message code="res_hdr_file"/></th>
<th><spring:message code="res_body_key"/></th> <th><spring:message code="res_body_key"/></th>
<th><spring:message code="res_body_file"/></th> --%> <th><spring:message code="res_body_file"/></th> --%>
<th><spring:message code="website"/></th> <th class="sort-column website"><spring:message code="website"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -177,20 +177,20 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th> URL &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th> <th class="sort-column url"> URL &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
<th><spring:message code="req_hdr_key"/></th> <th class="sort-column req_hdr_key"><spring:message code="req_hdr_key"/></th>
<th><spring:message code="req_hdr_file"/></th> <th class="sort-column req_hdr_file"><spring:message code="req_hdr_file"/></th>
<th><spring:message code="req_body_key"/></th> <th class="sort-column req_body_key"><spring:message code="req_body_key"/></th>
<th><spring:message code="req_body_file"/></th> <th class="sort-column req_body_file"><spring:message code="req_body_file"/></th>
<th><spring:message code="res_hdr_key"/></th> <th class="sort-column res_hdr_key"><spring:message code="res_hdr_key"/></th>
<th><spring:message code="res_hdr_file"/></th> <th class="sort-column res_hdr_file"><spring:message code="res_hdr_file"/></th>
<th><spring:message code="res_body_key"/></th> <th class="sort-column res_body_key"><spring:message code="res_body_key"/></th>
<th><spring:message code="res_body_file"/></th> <th class="sort-column res_body_file"><spring:message code="res_body_file"/></th>
<th><spring:message code="website"/></th> <th class="sort-column website"><spring:message code="website"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -170,7 +170,7 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -157,12 +157,12 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code='action'/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='ex_protocol'/></th> <th class="sort-column ex_protocol"><spring:message code='ex_protocol'/></th>
<th><spring:message code='isakmp_mode'/></th> <th class="sort-column isakmp_mode"><spring:message code='isakmp_mode'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -169,7 +169,7 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>

View File

@@ -168,16 +168,16 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code="mail_proto"/></th> <th class="sort-column mail_proto"><spring:message code="mail_proto"/></th>
<th><spring:message code="mail_from"/></th> <th class="sort-column mail_from"><spring:message code="mail_from"/></th>
<th><spring:message code="mail_to"/></th> <th class="sort-column mail_to"><spring:message code="mail_to"/></th>
<th><spring:message code="subject"/></th> <th class="sort-column subject"><spring:message code="subject"/></th>
<th><spring:message code="eml_file"/></th> <th class="sort-column eml_file"><spring:message code="eml_file"/></th>
<th><spring:message code="eml_key"/></th> <th class="sort-column eml_key"><spring:message code="eml_key"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -169,20 +169,20 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='protocol'/></th> <th class="sort-column trans_proto"><spring:message code='protocol'/></th>
<th class="sort-column addr_type"><spring:message code='addr_type'/></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th class="sort-column d_ip"><spring:message code="server_ip"/></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th class="sort-column s_ip"><spring:message code="client_ip"/></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>

View File

@@ -168,16 +168,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -169,16 +169,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -168,16 +168,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%--<th><spring:message code='av_protocol'/></th> --%> <%--<th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
@@ -185,8 +185,8 @@ $(document).ready(function(){
<th class="sort-column addr_type"><spring:message code='addr_type'/></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th class="sort-column d_ip"><spring:message code="server_ip"/></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th class="sort-column s_ip"><spring:message code="client_ip"/></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port'/></th> <th class="sort-column d_port"><spring:message code='server_port'/></th>
<th><spring:message code='client_port'/></th> <th class="sort-column s_port"><spring:message code='client_port'/></th>
<%--<th class="sort-column device_id"><spring:message code="deviceid"/></th> <%--<th class="sort-column device_id"><spring:message code="deviceid"/></th>
<th class="sort-column direction"><spring:message code="direction"/></th> --%> <th class="sort-column direction"><spring:message code="direction"/></th> --%>
<th class="sort-column stream_dir"><spring:message code="stream_type"/></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>

View File

@@ -165,16 +165,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
@@ -182,8 +182,8 @@ $(document).ready(function(){
<th class="sort-column addr_type"><spring:message code='addr_type'/></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th class="sort-column d_ip"><spring:message code="server_ip"/></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th class="sort-column s_ip"><spring:message code="client_ip"/></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port'/></th> <th class="sort-column d_port"><spring:message code='server_port'/></th>
<th><spring:message code='client_port'/></th> <th class="sort-column s_port"><spring:message code='client_port'/></th>
<%-- <th class="sort-column device_id"><spring:message code="deviceid"/></th> <%-- <th class="sort-column device_id"><spring:message code="deviceid"/></th>
<th class="sort-column direction"><spring:message code="direction"/></th> --%> <th class="sort-column direction"><spring:message code="direction"/></th> --%>
<th class="sort-column stream_dir"><spring:message code="stream_type"/></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>

View File

@@ -168,16 +168,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -168,16 +168,16 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer'/></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%> <%-- <th><spring:message code='av_protocol'/></th> --%>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -225,32 +225,32 @@
class="table table-striped table-bordered table-condensed text-nowrap logTb"> class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th><spring:message code='entrance' /></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -167,32 +167,32 @@ $(document).ready(function(){
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb"> <table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th><spring:message code='entrance' /></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -167,32 +167,32 @@ $(document).ready(function(){
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb"> <table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -166,32 +166,32 @@ $(document).ready(function(){
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb"> <table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -167,32 +167,32 @@ $(document).ready(function(){
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb"> <table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -167,32 +167,32 @@ $(document).ready(function(){
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb"> <table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
<thead> <thead>
<tr> <tr>
<th><spring:message code='cfg_id' /></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th><spring:message code='found_time' /></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th><spring:message code='entrance' /></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='pid' /></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='access_url' /></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='log_uri' /></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='referer' /></th> <th class="sort-column referer"><spring:message code='referer'/></th>
<th><spring:message code='harm_level' /></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type' /></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol' /></th> --%> <%-- <th><spring:message code='av_protocol' /></th> --%>
<th><spring:message code='clj_ip' /></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th><spring:message code='transport_layer_protocol' /></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>
<th><spring:message code='addr_type' /></th> <th class="sort-column addr_type"><spring:message code='addr_type'/></th>
<th><spring:message code='serverip' /></th> <th class="sort-column d_ip"><spring:message code="server_ip"/></th>
<th><spring:message code='clientip' /></th> <th class="sort-column s_ip"><spring:message code="client_ip"/></th>
<th><spring:message code='server_port' /></th> <th class="sort-column d_port"><spring:message code="server_port"/></th>
<th><spring:message code='client_port' /></th> <th class="sort-column s_port"><spring:message code="client_port"/></th>
<%-- <th><spring:message code='deviceid' /></th> <%-- <th><spring:message code='deviceid' /></th>
<th><spring:message code='direct' /></th> --%> <th><spring:message code='direct' /></th> --%>
<th><spring:message code='stream_type' /></th> <th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
<%-- <th><spring:message code='nest_addr_list' /></th> --%> <%-- <th><spring:message code='nest_addr_list' /></th> --%>
<th><spring:message code='server_locate' /></th> <th class="sort-column server_locate"><spring:message code='server_locate'/></th>
<th><spring:message code='client_locate' /></th> <th class="sort-column client_locate"><spring:message code='client_locate'/></th>
<th class="sort-column s_asn"><spring:message code='s_asn'/></th> <th class="sort-column s_asn"><spring:message code='s_asn'/></th>
<th class="sort-column d_asn"><spring:message code='d_asn'/></th> <th class="sort-column d_asn"><spring:message code='d_asn'/></th>
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th> <th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>

View File

@@ -168,24 +168,24 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='duation'/></th> <th class="sort-column duation"><spring:message code='duation'/></th>
<th><spring:message code='voip_protocol'/></th> <th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
<th><spring:message code='calling_account'/></th> <th class="sort-column calling_account"><spring:message code='calling_account'/></th>
<th><spring:message code='called_account'/></th> <th class="sort-column called_account"><spring:message code='called_account'/></th>
<th><spring:message code='calling_number'/></th> <th class="sort-column calling_number"><spring:message code='calling_number'/></th>
<th><spring:message code='called_number'/></th> <th class="sort-column called_number"><spring:message code='called_number'/></th>
<%-- <th><spring:message code='from_to_store_ip'/></th> <%-- <th><spring:message code='from_to_store_ip'/></th>
<th><spring:message code='from_to_store_url'/></th> <th><spring:message code='from_to_store_url'/></th>
<th><spring:message code='to_from_store_ip'/></th> <th><spring:message code='to_from_store_ip'/></th>
<th><spring:message code='to_from_store_url'/></th> --%> <th><spring:message code='to_from_store_url'/></th> --%>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -168,24 +168,24 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='duation'/></th> <th class="sort-column duation"><spring:message code='duation'/></th>
<th><spring:message code='voip_protocol'/></th> <th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
<th><spring:message code='calling_account'/></th> <th class="sort-column calling_account"><spring:message code='calling_account'/></th>
<th><spring:message code='called_account'/></th> <th class="sort-column called_account"><spring:message code='called_account'/></th>
<th><spring:message code='calling_number'/></th> <th class="sort-column calling_number"><spring:message code='calling_number'/></th>
<th><spring:message code='called_number'/></th> <th class="sort-column called_number"><spring:message code='called_number'/></th>
<%-- <th><spring:message code='from_to_store_ip'/></th> --%> <%-- <th><spring:message code='from_to_store_ip'/></th> --%>
<%-- <th><spring:message code='from_to_store_url'/></th> --%> <%-- <th><spring:message code='from_to_store_url'/></th> --%>
<%-- <th><spring:message code='to_from_store_ip'/></th> --%> <%-- <th><spring:message code='to_from_store_ip'/></th> --%>
<%-- <th><spring:message code='to_from_store_url'/></th> --%> <%-- <th><spring:message code='to_from_store_url'/></th> --%>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -168,24 +168,24 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='duation'/></th> <th class="sort-column duation"><spring:message code='duation'/></th>
<th><spring:message code='voip_protocol'/></th> <th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
<th><spring:message code='calling_account'/></th> <th class="sort-column calling_account"><spring:message code='calling_account'/></th>
<th><spring:message code='called_account'/></th> <th class="sort-column called_account"><spring:message code='called_account'/></th>
<th><spring:message code='calling_number'/></th> <th class="sort-column calling_number"><spring:message code='calling_number'/></th>
<th><spring:message code='called_number'/></th> <th class="sort-column called_number"><spring:message code='called_number'/></th>
<%-- <th><spring:message code='from_to_store_ip'/></th> --%> <%-- <th><spring:message code='from_to_store_ip'/></th> --%>
<%-- <th><spring:message code='from_to_store_url'/></th> --%> <%-- <th><spring:message code='from_to_store_url'/></th> --%>
<%-- <th><spring:message code='to_from_store_ip'/></th> --%> <%-- <th><spring:message code='to_from_store_ip'/></th> --%>
<%-- <th><spring:message code='to_from_store_url'/></th> --%> <%-- <th><spring:message code='to_from_store_url'/></th> --%>
<th><spring:message code='pid'/></th> <th class="sort-column pid"><spring:message code='pid'/></th>
<th><spring:message code='log_uri'/></th> <th class="sort-column log_uri"><spring:message code='log_uri'/></th>
<th><spring:message code='harm_level'/></th> <th class="sort-column level"><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th> <th class="sort-column fd_type"><spring:message code='fd_type'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -168,10 +168,10 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='access_url'/></th> <th class="sort-column url"><spring:message code='access_url'/></th>
<th><spring:message code='stream_media_protocol'/></th> <th><spring:message code='stream_media_protocol'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>

View File

@@ -170,14 +170,14 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code='version'/></th> <th class="sort-column version"><spring:message code='version'/></th>
<th><spring:message code='encrypt_mode'/></th> <th class="sort-column encrypt_mode"><spring:message code='encrypt_mode'/></th>
<th><spring:message code='hmac'/></th> <th class="sort-column hmac"><spring:message code='hmac'/></th>
<th><spring:message code='tunnel_type'/></th> <th class="sort-column tunnel_type"><spring:message code='tunnel_type'/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -185,13 +185,13 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action"/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code="p2p_proto"/></th> <th class="sort-column p2p_proto"><spring:message code="p2p_proto"/></th>
<th><spring:message code="p2p_file_id"/></th> <th class="sort-column p2p_file_id"><spring:message code="p2p_file_id"/></th>
<th><spring:message code="p2p_keyword"/></th> <th class="sort-column p2p_keyword"><spring:message code="p2p_keyword"/></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -167,12 +167,12 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<th><spring:message code="tunnel_type" /></th> <th class="sort-column tunnel_type"><spring:message code="tunnel_type" /></th>
<th><spring:message code="encrypt_mode" /></th> <th class="sort-column encrypt_mode"><spring:message code="encrypt_mode" /></th>
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th> <th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th> <th class="sort-column trans_proto"><spring:message code="transport_layer_protocol"/></th>

View File

@@ -170,12 +170,12 @@ $(document).ready(function(){
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code='action'/></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>
<%-- <th><spring:message code='version'/></th> --%> <%-- <th><spring:message code='version'/></th> --%>
<th><spring:message code='host_key'/></th> <th class="sort-column host_key"><spring:message code='host_key'/></th>
<%-- <th><spring:message code='host_cookie'/></th> <%-- <th><spring:message code='host_cookie'/></th>
<th><spring:message code='encrypt_mode'/></th> <th><spring:message code='encrypt_mode'/></th>
<th><spring:message code='mac'/></th> <th><spring:message code='mac'/></th>

View File

@@ -176,7 +176,7 @@
<thead> <thead>
<tr> <tr>
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th> <th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
<th><spring:message code="action" /></th> <th class="sort-column service"><spring:message code="action"/></th>
<th class="sort-column found_time"><spring:message code="found_time"/></th> <th class="sort-column found_time"><spring:message code="found_time"/></th>
<th class="sort-column entrance_id"><spring:message code="entrance"/></th> <th class="sort-column entrance_id"><spring:message code="entrance"/></th>

View File

@@ -33,7 +33,7 @@ $(function(){
$("form input[name$='cfgKeywords']").attr("maxlength","1024"); $("form input[name$='cfgKeywords']").attr("maxlength","1024");
$("form input[class~='domainCheck']").attr("maxlength","1024"); $("form input[class~='domainCheck']").attr("maxlength","1024");
//截取过长的文字 使用id选择器;例如:tab对象->tr->td对象. 排除日志table .logTb //截取过长的文字 使用id选择器;例如:tab对象->tr->td对象. 排除日志table .logTb
$("#contentTable").not(".logTb").find("td").each(function(i){ $("#contentTable").find("td").each(function(i){
//获取td当前对象的文本,如果长度大于25; //获取td当前对象的文本,如果长度大于25;
if($(this).text().trim().length>28){ if($(this).text().trim().length>28){
//给td设置title属性,并且设置td的完整值.给title属性. //给td设置title属性,并且设置td的完整值.给title属性.

View File

@@ -1,5 +1,5 @@
/* logs page */ /* logs page */
table.logTb { /* table.logTb {
table-layout: fixed; table-layout: fixed;
} }
@@ -13,7 +13,7 @@ table.logTb td ~td {
-khtml-text-overflow: ellipsis; -khtml-text-overflow: ellipsis;
-moz-text-overflow: ellipsis; -moz-text-overflow: ellipsis;
-webkit-text-overflow: ellipsis; -webkit-text-overflow: ellipsis;
} } */
/*列表标题首字母大写 */ /*列表标题首字母大写 */
table thead tr th{ table thead tr th{
text-transform: capitalize; text-transform: capitalize;

View File

@@ -10,7 +10,7 @@ $(document).ready(function() {
this.title=str; this.title=str;
}); });
var fontSize = 0; var fontSize = 0;
$("table.logTb th").each(function(j){ /* $("table.logTb th").each(function(j){
// 判断是否支持currentStyle属性 是IE 否FF or Chrome // 判断是否支持currentStyle属性 是IE 否FF or Chrome
var finalStyle = this.currentStyle ? this.currentStyle : document.defaultView.getComputedStyle(this , null); var finalStyle = this.currentStyle ? this.currentStyle : document.defaultView.getComputedStyle(this , null);
fontSize = (finalStyle.fontSize).replace("px",""); fontSize = (finalStyle.fontSize).replace("px","");
@@ -30,9 +30,9 @@ $(document).ready(function() {
} }
}); });
}); });
}); });*/
var tdString = ""; /* var tdString = "";
$("table.logTb tbody tr").each(function(){ $("table.logTb tbody tr").each(function(){
tdString = $(this).find('td:first').text(); tdString = $(this).find('td:first').text();
}); });
@@ -47,7 +47,7 @@ $(document).ready(function() {
var tdPx = getPixelsCount(tdString,fontSize)+45; var tdPx = getPixelsCount(tdString,fontSize)+45;
this.setAttribute('width',tdPx+'px'); this.setAttribute('width',tdPx+'px');
} }
}); });*/
// 添加由配置界面跳转到日志查询界面后的返回按钮 // 添加由配置界面跳转到日志查询界面后的返回按钮
var isLogTotalSearch = $("#isLogTotalSearch").val(); var isLogTotalSearch = $("#isLogTotalSearch").val();