日志特殊字段私有字段增加排序,截取过长调用配置方法,流量统计处理带宽数据
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
</label>
|
||||
</p>
|
||||
<p class="csNum">In <span class="c2sNum">0</span> | Out <span class="s2cNum">0</span> </p>
|
||||
<span class="numberRun4">0</span ><span class="numberRun4-unit"> bps</span>
|
||||
<span class="numberRun4">0</span > <span class="numberRun4-unit">bps</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="fr_fc">
|
||||
@@ -142,7 +142,7 @@
|
||||
<div class="main_left fl">
|
||||
<div class="left_1">
|
||||
<div class="main_title">
|
||||
<spring:message code="traffic_ipactive_chart"/> <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"/> <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>
|
||||
<!-- 活跃IP图 --> <div id="chart_main" style="width:100%;height:400px;"></div>
|
||||
</div>
|
||||
@@ -394,7 +394,7 @@ $(document).ready(function(){
|
||||
ajaxinfo();
|
||||
setInterval(function(){
|
||||
ajaxinfo();
|
||||
},20000);
|
||||
},30000);
|
||||
|
||||
protocolList();//协议统计
|
||||
ipActiveList();//活跃IP
|
||||
@@ -448,61 +448,48 @@ function ajaxinfo(){
|
||||
if(liveConnNum==null||liveConnNum==""){
|
||||
liveConnNum=0;
|
||||
}
|
||||
dataScroll(".numberRun",Math.floor(loopConnNum));
|
||||
dataScroll(".numberRun1",Math.floor(rejectNum));
|
||||
dataScroll(".numberRun2",Math.floor(monitorNum));
|
||||
dataScroll(".numberRun3",Math.floor(dropConnNum));
|
||||
dataScroll(".numberRun5",Math.floor(newUniConnNum));
|
||||
dataScroll(".numberRun6",Math.floor(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));
|
||||
dataScroll(".numberRun",Math.round(loopConnNum));
|
||||
dataScroll(".numberRun1",Math.round(rejectNum));
|
||||
dataScroll(".numberRun2",Math.round(monitorNum));
|
||||
dataScroll(".numberRun3",Math.round(dropConnNum));
|
||||
dataScroll(".numberRun5",Math.round(newUniConnNum));
|
||||
dataScroll(".numberRun6",Math.round(liveConnNum));
|
||||
|
||||
//计算带宽进出口流量百分比
|
||||
// $("#c2sColor").removeClass();
|
||||
// $("#s2cColor").removeClass();
|
||||
var inoctetsNum=Math.floor(data.inoctetsNum);
|
||||
var inoctetsNum=Math.round(data.inoctetsNum);
|
||||
var inoctetsNumK=inoctetsNum/1024;
|
||||
var inoctetsNumM=inoctetsNumK/1024;
|
||||
var inoctetsNumG=inoctetsNumM/1024;
|
||||
var outoctetsNum=Math.floor(data.outoctetsNum);
|
||||
var outoctetsNum=Math.round(data.outoctetsNum);
|
||||
var outoctetsNumK=outoctetsNum/1024;
|
||||
var outoctetsNumM=outoctetsNumK/1024;
|
||||
var outoctetsNumG=outoctetsNumM/1024;
|
||||
var unit="bps";
|
||||
if(inoctetsNumK>10){
|
||||
inoctetsNum=inoctetsNumK;
|
||||
outoctetsNum=outoctetsNumK;
|
||||
var bandwidth=inoctetsNum+outoctetsNum;
|
||||
if(inoctetsNumK>1||outoctetsNumK>1){
|
||||
inoctetsNum=inoctetsNumK.toFixed(2);
|
||||
outoctetsNum=outoctetsNumK.toFixed(2);
|
||||
unit="Kbps";
|
||||
};
|
||||
if(inoctetsNumM>10){
|
||||
inoctetsNum=inoctetsNumM;
|
||||
outoctetsNum=outoctetsNumM;
|
||||
if(inoctetsNumM>1||outoctetsNumM>1){
|
||||
inoctetsNum=inoctetsNumM.toFixed(2);
|
||||
outoctetsNum=outoctetsNumM.toFixed(2);
|
||||
unit="Mbps";
|
||||
};
|
||||
if(inoctetsNumG>10){
|
||||
inoctetsNum=inoctetsNumG;
|
||||
outoctetsNum=outoctetsNumG;
|
||||
unit="Mbps";
|
||||
if(inoctetsNumG>1||outoctetsNumG>1){
|
||||
inoctetsNum=inoctetsNumG.toFixed(2);
|
||||
outoctetsNum=outoctetsNumG.toFixed(2);
|
||||
unit="Gbps";
|
||||
};
|
||||
$(".c2sNum").text(Math.floor(inoctetsNum)+" "+unit);
|
||||
$(".s2cNum").text(Math.floor(outoctetsNum)+" "+unit);
|
||||
$(".c2sNum").text(inoctetsNum);
|
||||
$(".s2cNum").text(outoctetsNum);
|
||||
|
||||
$(".numberRun4-unit").text(" "+unit);
|
||||
|
||||
bandwidth=parseFloat(inoctetsNum)+parseFloat(outoctetsNum);
|
||||
dataScroll2(".numberRun4",bandwidth);
|
||||
/* if(data.inoctetsNum!=c2s){
|
||||
$(".c2sNum").text(data.c2sNum);
|
||||
$(".s2cNum").text(100-data.c2sNum);
|
||||
@@ -533,6 +520,14 @@ function dataScroll(index,nums){
|
||||
var numRun = $(index).numberAnimate({num:1, speed:3000, symbol:","});
|
||||
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(){
|
||||
@@ -624,11 +619,11 @@ function portActiveList(){
|
||||
tr += "<td class='list_c1' style='color:#fff' title='"+itemObj.port+"'>"+itemObj.port+"</td>";
|
||||
tr += "<td class='list_c2' style='color:#fff'>"+count+"</td>";
|
||||
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){
|
||||
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{
|
||||
tr += "<td class='list_c3'>"+""+"</td></tr>";
|
||||
tr += "<td class='list_c3'>"+"--"+"</td></tr>";
|
||||
}
|
||||
$("#tbodyDataPort").prepend(tr);
|
||||
})
|
||||
@@ -700,11 +695,11 @@ function systemList(){
|
||||
tr += "<td class='list_c1' style='color:#fff'>"+n+"</td>";
|
||||
tr += "<td class='list_c2' style='color:#fff' title='"+itemObj.osType+"'>"+itemObj.osType+"</td>";
|
||||
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){
|
||||
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{
|
||||
tr += "<td class='list_c3'>"+""+"</td></tr>";
|
||||
tr += "<td class='list_c3'>"+"--"+"</td></tr>";
|
||||
}
|
||||
n=n-1;
|
||||
$("#tbodyData1").prepend(tr);
|
||||
@@ -796,11 +791,11 @@ function browserList() {
|
||||
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>";
|
||||
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){
|
||||
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{
|
||||
tr += "<td class='list_c3'>"+""+"</td></tr>";
|
||||
tr += "<td class='list_c3'>"+"--"+"</td></tr>";
|
||||
}
|
||||
$("#tbodyData1").prepend(tr);
|
||||
n=n-1;
|
||||
@@ -851,11 +846,11 @@ function websiteList() {
|
||||
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>";
|
||||
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){
|
||||
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{
|
||||
tr += "<td class='list_c3'>"+""+"</td></tr>";
|
||||
tr += "<td class='list_c3'>"+"--"+"</td></tr>";
|
||||
}
|
||||
|
||||
$("#tbodyData2").prepend(tr);
|
||||
|
||||
@@ -179,7 +179,7 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
|
||||
@@ -170,7 +170,7 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></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 d_subscribe_id"><spring:message code='d_subscribe_id'/></th>
|
||||
<%-- <th class="sort-column scene_file"><spring:message code='scene_file'/></th> --%>
|
||||
<th><spring:message code='message_type'/></th>
|
||||
<th><spring:message code='as'/></th>
|
||||
<th><spring:message code='route'/></th>
|
||||
<th class="sort-column type"><spring:message code='message_type'/></th>
|
||||
<th class="sort-column as_num"><spring:message code='as'/></th>
|
||||
<th class="sort-column route"><spring:message code='route'/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -160,21 +160,21 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='attack_type'/></th>
|
||||
<th><spring:message code='attack_start_time'/></th>
|
||||
<th><spring:message code='last_attack_time'/></th>
|
||||
<th><spring:message code='attack_max_pps'/></th>
|
||||
<th><spring:message code='attack_max_bps'/></th>
|
||||
<th class="sort-column attack_type"><spring:message code='attack_type'/></th>
|
||||
<th class="sort-column attack_start_time"><spring:message code='attack_start_time'/></th>
|
||||
<th class="sort-column last_attack_time"><spring:message code='last_attack_time'/></th>
|
||||
<th class="sort-column attack_max_pps"><spring:message code='attack_max_pps'/></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_byte'/></th> --%>
|
||||
<%-- <th><spring:message code='is_blcok'/></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 d_ip"><spring:message code="server_ip"/></th>
|
||||
<%-- <th class="sort-column s_ip"><spring:message code="client_ip"/></th> --%>
|
||||
|
||||
@@ -177,7 +177,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
|
||||
@@ -171,12 +171,12 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='ftp_url'/></th>
|
||||
<th><spring:message code='ftp_content'/></th>
|
||||
<th class="sort-column ftp_url"><spring:message code='ftp_url'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -202,11 +202,11 @@
|
||||
<tr>
|
||||
<th><input type="checkbox" class="i-checks" id="checkAll"></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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th> URL </th>
|
||||
<th class="sort-column url"> URL </th>
|
||||
<%-- <th><spring:message code="req_hdr_key"/></th>
|
||||
<th><spring:message code="req_hdr_file"/></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_body_key"/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -177,20 +177,20 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th> URL </th>
|
||||
<th><spring:message code="req_hdr_key"/></th>
|
||||
<th><spring:message code="req_hdr_file"/></th>
|
||||
<th><spring:message code="req_body_key"/></th>
|
||||
<th><spring:message code="req_body_file"/></th>
|
||||
<th><spring:message code="res_hdr_key"/></th>
|
||||
<th><spring:message code="res_hdr_file"/></th>
|
||||
<th><spring:message code="res_body_key"/></th>
|
||||
<th><spring:message code="res_body_file"/></th>
|
||||
<th><spring:message code="website"/></th>
|
||||
<th class="sort-column url"> URL </th>
|
||||
<th class="sort-column req_hdr_key"><spring:message code="req_hdr_key"/></th>
|
||||
<th class="sort-column req_hdr_file"><spring:message code="req_hdr_file"/></th>
|
||||
<th class="sort-column req_body_key"><spring:message code="req_body_key"/></th>
|
||||
<th class="sort-column req_body_file"><spring:message code="req_body_file"/></th>
|
||||
<th class="sort-column res_hdr_key"><spring:message code="res_hdr_key"/></th>
|
||||
<th class="sort-column res_hdr_file"><spring:message code="res_hdr_file"/></th>
|
||||
<th class="sort-column res_body_key"><spring:message code="res_body_key"/></th>
|
||||
<th class="sort-column res_body_file"><spring:message code="res_body_file"/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -170,7 +170,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -157,12 +157,12 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='ex_protocol'/></th>
|
||||
<th><spring:message code='isakmp_mode'/></th>
|
||||
<th class="sort-column ex_protocol"><spring:message code='ex_protocol'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -169,7 +169,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
|
||||
@@ -168,16 +168,16 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code="mail_proto"/></th>
|
||||
<th><spring:message code="mail_from"/></th>
|
||||
<th><spring:message code="mail_to"/></th>
|
||||
<th><spring:message code="subject"/></th>
|
||||
<th><spring:message code="eml_file"/></th>
|
||||
<th><spring:message code="eml_key"/></th>
|
||||
<th class="sort-column mail_proto"><spring:message code="mail_proto"/></th>
|
||||
<th class="sort-column mail_from"><spring:message code="mail_from"/></th>
|
||||
<th class="sort-column mail_to"><spring:message code="mail_to"/></th>
|
||||
<th class="sort-column subject"><spring:message code="subject"/></th>
|
||||
<th class="sort-column eml_file"><spring:message code="eml_file"/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -169,20 +169,20 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></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 d_ip"><spring:message code="server_ip"/></th>
|
||||
<th class="sort-column s_ip"><spring:message code="client_ip"/></th>
|
||||
|
||||
@@ -168,16 +168,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></th> --%>
|
||||
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -169,16 +169,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></th> --%>
|
||||
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -168,16 +168,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%--<th><spring:message code='av_protocol'/></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 d_ip"><spring:message code="server_ip"/></th>
|
||||
<th class="sort-column s_ip"><spring:message code="client_ip"/></th>
|
||||
<th><spring:message code='server_port'/></th>
|
||||
<th><spring:message code='client_port'/></th>
|
||||
<th class="sort-column d_port"><spring:message code='server_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 direction"><spring:message code="direction"/></th> --%>
|
||||
<th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
|
||||
|
||||
@@ -165,16 +165,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></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 d_ip"><spring:message code="server_ip"/></th>
|
||||
<th class="sort-column s_ip"><spring:message code="client_ip"/></th>
|
||||
<th><spring:message code='server_port'/></th>
|
||||
<th><spring:message code='client_port'/></th>
|
||||
<th class="sort-column d_port"><spring:message code='server_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 direction"><spring:message code="direction"/></th> --%>
|
||||
<th class="sort-column stream_dir"><spring:message code="stream_type"/></th>
|
||||
|
||||
@@ -168,16 +168,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></th> --%>
|
||||
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -168,16 +168,16 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='access_url'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='referer'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol'/></th> --%>
|
||||
|
||||
<th class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -225,32 +225,32 @@
|
||||
class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
|
||||
<th class="sort-column service"><spring:message code="action"/></th>
|
||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -167,32 +167,32 @@ $(document).ready(function(){
|
||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></th>
|
||||
<th class="sort-column service"><spring:message code="action"/></th>
|
||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -167,32 +167,32 @@ $(document).ready(function(){
|
||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -166,32 +166,32 @@ $(document).ready(function(){
|
||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -167,32 +167,32 @@ $(document).ready(function(){
|
||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -167,32 +167,32 @@ $(document).ready(function(){
|
||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><spring:message code='cfg_id' /></th>
|
||||
<th><spring:message code="action" /></th>
|
||||
<th><spring:message code='found_time' /></th>
|
||||
<th><spring:message code='entrance' /></th>
|
||||
<th class="sort-column cfg_id"><spring:message code="cfg_id"/></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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='pid' /></th>
|
||||
<th><spring:message code='access_url' /></th>
|
||||
<th><spring:message code='log_uri' /></th>
|
||||
<th><spring:message code='referer' /></th>
|
||||
<th><spring:message code='harm_level' /></th>
|
||||
<th><spring:message code='fd_type' /></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column url"><spring:message code='access_url'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column referer"><spring:message code='referer'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></th>
|
||||
<th class="sort-column fd_type"><spring:message code='fd_type'/></th>
|
||||
<%-- <th><spring:message code='av_protocol' /></th> --%>
|
||||
|
||||
<th><spring:message code='clj_ip' /></th>
|
||||
<th><spring:message code='transport_layer_protocol' /></th>
|
||||
<th><spring:message code='addr_type' /></th>
|
||||
<th><spring:message code='serverip' /></th>
|
||||
<th><spring:message code='clientip' /></th>
|
||||
<th><spring:message code='server_port' /></th>
|
||||
<th><spring:message code='client_port' /></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 addr_type"><spring:message code='addr_type'/></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 d_port"><spring:message code="server_port"/></th>
|
||||
<th class="sort-column s_port"><spring:message code="client_port"/></th>
|
||||
<%-- <th><spring:message code='deviceid' /></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='server_locate' /></th>
|
||||
<th><spring:message code='client_locate' /></th>
|
||||
<th class="sort-column server_locate"><spring:message code='server_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 d_asn"><spring:message code='d_asn'/></th>
|
||||
<th class="sort-column s_subscribe_id"><spring:message code='s_subscribe_id'/></th>
|
||||
|
||||
@@ -168,24 +168,24 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='duation'/></th>
|
||||
<th><spring:message code='voip_protocol'/></th>
|
||||
<th><spring:message code='calling_account'/></th>
|
||||
<th><spring:message code='called_account'/></th>
|
||||
<th><spring:message code='calling_number'/></th>
|
||||
<th><spring:message code='called_number'/></th>
|
||||
<th class="sort-column duation"><spring:message code='duation'/></th>
|
||||
<th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
|
||||
<th class="sort-column calling_account"><spring:message code='calling_account'/></th>
|
||||
<th class="sort-column called_account"><spring:message code='called_account'/></th>
|
||||
<th class="sort-column calling_number"><spring:message code='calling_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_url'/></th>
|
||||
<th><spring:message code='to_from_store_ip'/></th>
|
||||
<th><spring:message code='to_from_store_url'/></th> --%>
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -168,24 +168,24 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='duation'/></th>
|
||||
<th><spring:message code='voip_protocol'/></th>
|
||||
<th><spring:message code='calling_account'/></th>
|
||||
<th><spring:message code='called_account'/></th>
|
||||
<th><spring:message code='calling_number'/></th>
|
||||
<th><spring:message code='called_number'/></th>
|
||||
<th class="sort-column duation"><spring:message code='duation'/></th>
|
||||
<th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
|
||||
<th class="sort-column calling_account"><spring:message code='calling_account'/></th>
|
||||
<th class="sort-column called_account"><spring:message code='called_account'/></th>
|
||||
<th class="sort-column calling_number"><spring:message code='calling_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_url'/></th> --%>
|
||||
<%-- <th><spring:message code='to_from_store_ip'/></th> --%>
|
||||
<%-- <th><spring:message code='to_from_store_url'/></th> --%>
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -168,24 +168,24 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='duation'/></th>
|
||||
<th><spring:message code='voip_protocol'/></th>
|
||||
<th><spring:message code='calling_account'/></th>
|
||||
<th><spring:message code='called_account'/></th>
|
||||
<th><spring:message code='calling_number'/></th>
|
||||
<th><spring:message code='called_number'/></th>
|
||||
<th class="sort-column duation"><spring:message code='duation'/></th>
|
||||
<th class="sort-column voip_protocol"><spring:message code='voip_protocol'/></th>
|
||||
<th class="sort-column calling_account"><spring:message code='calling_account'/></th>
|
||||
<th class="sort-column called_account"><spring:message code='called_account'/></th>
|
||||
<th class="sort-column calling_number"><spring:message code='calling_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_url'/></th> --%>
|
||||
<%-- <th><spring:message code='to_from_store_ip'/></th> --%>
|
||||
<%-- <th><spring:message code='to_from_store_url'/></th> --%>
|
||||
<th><spring:message code='pid'/></th>
|
||||
<th><spring:message code='log_uri'/></th>
|
||||
<th><spring:message code='harm_level'/></th>
|
||||
<th><spring:message code='fd_type'/></th>
|
||||
<th class="sort-column pid"><spring:message code='pid'/></th>
|
||||
<th class="sort-column log_uri"><spring:message code='log_uri'/></th>
|
||||
<th class="sort-column level"><spring:message code='harm_level'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -168,10 +168,10 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 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 class="sort-column cap_ip"><spring:message code="clj_ip"/></th>
|
||||
|
||||
@@ -170,14 +170,14 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code='version'/></th>
|
||||
<th><spring:message code='encrypt_mode'/></th>
|
||||
<th><spring:message code='hmac'/></th>
|
||||
<th><spring:message code='tunnel_type'/></th>
|
||||
<th class="sort-column version"><spring:message code='version'/></th>
|
||||
<th class="sort-column encrypt_mode"><spring:message code='encrypt_mode'/></th>
|
||||
<th class="sort-column hmac"><spring:message code='hmac'/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -185,13 +185,13 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code="p2p_proto"/></th>
|
||||
<th><spring:message code="p2p_file_id"/></th>
|
||||
<th><spring:message code="p2p_keyword"/></th>
|
||||
<th class="sort-column p2p_proto"><spring:message code="p2p_proto"/></th>
|
||||
<th class="sort-column p2p_file_id"><spring:message code="p2p_file_id"/></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -167,12 +167,12 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
<th><spring:message code="tunnel_type" /></th>
|
||||
<th><spring:message code="encrypt_mode" /></th>
|
||||
<th class="sort-column tunnel_type"><spring:message code="tunnel_type" /></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 trans_proto"><spring:message code="transport_layer_protocol"/></th>
|
||||
|
||||
@@ -170,12 +170,12 @@ $(document).ready(function(){
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></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='encrypt_mode'/></th>
|
||||
<th><spring:message code='mac'/></th>
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<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 entrance_id"><spring:message code="entrance"/></th>
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ $(function(){
|
||||
$("form input[name$='cfgKeywords']").attr("maxlength","1024");
|
||||
$("form input[class~='domainCheck']").attr("maxlength","1024");
|
||||
//截取过长的文字 使用id选择器;例如:tab对象->tr->td对象. 排除日志table .logTb
|
||||
$("#contentTable").not(".logTb").find("td").each(function(i){
|
||||
$("#contentTable").find("td").each(function(i){
|
||||
//获取td当前对象的文本,如果长度大于25;
|
||||
if($(this).text().trim().length>28){
|
||||
//给td设置title属性,并且设置td的完整值.给title属性.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* logs page */
|
||||
table.logTb {
|
||||
/* table.logTb {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ table.logTb td ~td {
|
||||
-khtml-text-overflow: ellipsis;
|
||||
-moz-text-overflow: ellipsis;
|
||||
-webkit-text-overflow: ellipsis;
|
||||
}
|
||||
} */
|
||||
/*列表标题首字母大写 */
|
||||
table thead tr th{
|
||||
text-transform: capitalize;
|
||||
|
||||
@@ -10,7 +10,7 @@ $(document).ready(function() {
|
||||
this.title=str;
|
||||
});
|
||||
var fontSize = 0;
|
||||
$("table.logTb th").each(function(j){
|
||||
/* $("table.logTb th").each(function(j){
|
||||
// 判断是否支持currentStyle属性 是:IE 否:FF or Chrome
|
||||
var finalStyle = this.currentStyle ? this.currentStyle : document.defaultView.getComputedStyle(this , null);
|
||||
fontSize = (finalStyle.fontSize).replace("px","");
|
||||
@@ -30,9 +30,9 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
});*/
|
||||
|
||||
var tdString = "";
|
||||
/* var tdString = "";
|
||||
$("table.logTb tbody tr").each(function(){
|
||||
tdString = $(this).find('td:first').text();
|
||||
});
|
||||
@@ -47,7 +47,7 @@ $(document).ready(function() {
|
||||
var tdPx = getPixelsCount(tdString,fontSize)+45;
|
||||
this.setAttribute('width',tdPx+'px');
|
||||
}
|
||||
});
|
||||
});*/
|
||||
|
||||
// 添加由配置界面跳转到日志查询界面后的返回按钮
|
||||
var isLogTotalSearch = $("#isLogTotalSearch").val();
|
||||
|
||||
Reference in New Issue
Block a user