ntopng/scripts/lua/inc/footer.lua
Luca 11f8c934d0 Reworked hosts listing in order to avoid/limit out-of-memory issues
Implemented aggregation of hosts and flows when using views
2015-12-27 18:55:50 +01:00

427 lines
12 KiB
Lua

--
-- (C) 2013-15 - ntop.org
--
require "os"
print [[
<div id="footer"> <hr>
]]
ntop_version_check()
info = ntop.getInfo()
print [[
<div class="container-fluid">
<div class="row">
<div class="col-xs-6 col-sm-4">&copy; 1998-]]
print(os.date("%Y"))
print [[ - <A HREF="http://www.ntop.org">ntop.org</A> <br><font color=gray>Generated by ]]
print(info["product"])
iface_id = interface.name2id(ifname)
interface.select(ifname)
_ifstats = aggregateInterfaceStats(interface.getStats())
if(info["pro.release"]) then
print(" Professional")
else
print(" Community")
end
if(info["version.embedded_edition"] == true) then
print("/Embedded")
end
print(" v."..info["version"])
print("</br>for user ")
print('<a href="'..ntop.getHttpPrefix()..'/lua/admin/users.lua">'.._SESSION["user"].. '</a> and interface <a href="'..ntop.getHttpPrefix()..'/lua/if_stats.lua?if_name='.. ifname..'">')
alias = getInterfaceNameAlias(ifname)
if((alias ~= nil) and (alias ~= ifname)) then
print(alias)
else
print(_ifstats.name)
end
print('</a>')
if(info["pro.systemid"] and (info["pro.systemid"] ~= "")) then
local do_show = false
print('<br><A HREF='..ntop.getHttpPrefix()..'/lua/about.lua> <span class="badge badge-warning">')
if(info["pro.release"]) then
if(info["pro.demo_ends_at"] ~= nil) then
local rest = info["pro.demo_ends_at"] - os.time()
if(rest > 0) then
print(' License expires in '.. secondsToTime(rest) ..'')
end
end
else
print('Upgrade to Professional version')
do_show = true
end
print('</span></A>')
if(do_show) then
print('<br><iframe src="http://ghbtns.com/github-btn.html?user=ntop&repo=ntopng&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>')
end
end
print [[</font>
</div> <!-- End column 1 -->
<div class="col-xs-6 col-sm-4">
<div class="row">
<div class="text-center col-xs-6 col-sm-6">
]]
key = 'ntopng.prefs.'..ifname..'.speed'
maxSpeed = ntop.getCache(key)
-- io.write(maxSpeed)
if((maxSpeed == "") or (maxSpeed == nil)) then
maxSpeed = 1000000000 -- 1 Gbit
else
maxSpeed = tonumber(maxSpeed)*1000000
end
addGauge('gauge', ntop.getHttpPrefix()..'/lua/set_if_prefs.lua', maxSpeed, 100, 50)
print [[ <div class="text-center" title="All traffic detected by NTOP: Local2Local, Remote2Local, Local2Remote" id="gauge_text_allTraffic"></div> ]]
print [[
</div>
<div>]]
print [[ <a href="]]
print (ntop.getHttpPrefix())
print [[/lua/if_stats.lua?if_name=]] print(ifname) print [[">
<table style="border-collapse:collapse; !important">
<tr><td title="Local to Remote Traffic"><i class="fa fa-cloud-upload"></i>&nbsp;</td><td class="network-load-chart-local2remote">0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0</td><td class="text-right" id="chart-local2remote-text"></td></tr>
<tr><td title="Remote to Local Traffic"><i class="fa fa-cloud-download"></i>&nbsp;</td><td class="network-load-chart-remote2local">0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0</td><td class="text-right" id="chart-remote2local-text"></td></tr>
</table>
</div>
<div class="col-xs-6 col-sm-4">
</a>
]]
print [[
</div>
</div>
</div><!-- End column 2 -->
<!-- Optional: clear the XS cols if their content doesn't match in height -->
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-4">
<div id="network-load">
</div> <!-- End column 3 -->
</div>
</div>
<script>
// Updating charts.
]]
print('var is_historical = false;')
print [[
var updatingChart_local2remote = $(".network-load-chart-local2remote").peity("line", { width: 64, max: null });
var updatingChart_remote2local = $(".network-load-chart-remote2local").peity("line", { width: 64, max: null, fill: "lightgreen"});
var prev_bytes = 0;
var prev_packets = 0;
var prev_local = 0;
var prev_remote = 0;
var prev_epoch = 0;
function addCommas(nStr) {
nStr += '';
var x = nStr.split('.');
var x1 = x[0];
var x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
function formatPackets(n) {
return(addCommas(n)+" Pkts");
}
function bytesToVolume(bytes) {
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes == 0) return '0 Bytes';
var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return (bytes / Math.pow(1024, i)).toFixed(2) + ' ' + sizes[i];
};
function bytesToVolumeAndLabel(bytes) {
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes == 0) return '0 Bytes';
var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return [ (bytes / Math.pow(1024, i)).toFixed(2), sizes[i] ];
};
function bitsToSize(bits, factor) {
var sizes = ['bps', 'Kbps', 'Mbps', 'Gbps', 'Tbps'];
if (bits == 0) return '0 bps';
var i = parseInt(Math.floor(Math.log(bits) / Math.log(1024)));
if (i == 0) return bits + ' ' + sizes[i];
return (bits / Math.pow(factor, i)).toFixed(2) + ' ' + sizes[i];
};
function bytesToSize(bytes) {
return(bytesToSize(bytes*8));
}
function secondsToTime(seconds) {
if(seconds < 1) {
return("< 1 sec")
}
var days = Math.floor(seconds / 86400)
var hours = Math.floor((seconds / 3600) - (days * 24))
var minutes = Math.floor((seconds / 60) - (days * 1440) - (hours * 60))
var sec = seconds % 60
var msg = ""
if(days > 0) {
years = Math.floor(days/365)
if(years > 0) {
days = days % 365
msg = years + " year"
if(years > 1) {
msg = msg + "s"
}
msg = msg + ", "
}
msg = msg + days + " day"
if(days > 1) { msg = msg + "s" }
msg = msg + ", "
}
if(hours > 0) {
msg = msg + hours + " ";
if(hours > 1)
msg = msg + "hour"
else
msg = msg + "hour"
if(hours > 1) { msg = msg + "s" }
msg = msg + ", "
}
if(minutes > 0) {
msg = msg + minutes + " min";
}
if(sec > 0) {
if((msg.length > 0) && (minutes > 0)) { msg = msg + ", " }
msg = msg + sec + " sec";
}
return msg
}
Date.prototype.format = function(format) { //author: meizz
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}
if(/(y+)/.test(format)) format=format.replace(RegExp.$1,
(this.getFullYear()+"").substr(4 - RegExp.$1.length));
for(var k in o)if(new RegExp("("+ k +")").test(format))
format = format.replace(RegExp.$1,
RegExp.$1.length==1 ? o[k] :
("00"+ o[k]).substr((""+ o[k]).length));
return format;
}
function epoch2Seen(epoch) {
/* 08/01/13 15:12:37 [18 min, 13 sec ago] */
var d = new Date(epoch*1000);
var tdiff = Math.floor(((new Date()).getTime()/1000)-epoch);
return(d.format("dd/MM/yyyy hh:mm:ss")+" ["+secondsToTime(tdiff)+" ago]");
}
setInterval(function() {
$.ajax({
type: 'GET',
url: ']]
print (ntop.getHttpPrefix())
print [[/lua/network_load.lua',
data: { },
/* error: function(content) { alert("JSON Error (session expired?): logging out"); window.location.replace("]]
print (ntop.getHttpPrefix())
print [[/lua/logout.lua"); }, */
success: function(content) {
var rsp;
try {
rsp = jQuery.parseJSON(content);
if (prev_bytes > 0) {
if (rsp.packets < prev_packets) {
prev_bytes = rsp.bytes;
prev_packets = rsp.packets;
prev_local = rsp.local2remote;
prev_remote = rsp.remote2local;
}
var values = updatingChart_local2remote.text().split(",")
var values1 = updatingChart_remote2local.text().split(",")
var bytes_diff = rsp.bytes-prev_bytes;
var packets_diff = rsp.packets-prev_packets;
var local_diff = rsp.local2remote-prev_local;
var remote_diff = rsp.remote2local-prev_remote;
var epoch_diff = rsp.epoch - prev_epoch;
if(epoch_diff > 0) {
if(bytes_diff > 0) {
var v = local_diff-remote_diff;
var v_label;
values.shift();
values.push(local_diff);
updatingChart_local2remote.text(values.join(",")).change();
values1.shift();
values1.push(-remote_diff);
updatingChart_remote2local.text(values1.join(",")).change();
}
var pps = Math.floor(packets_diff / epoch_diff);
var bps = Math.round((bytes_diff*8) / epoch_diff );
var bps_local2remote = Math.round((local_diff*8) / epoch_diff);
var bps_remote2local = Math.round((remote_diff*8) / epoch_diff);
$('#gauge_text_allTraffic').html(bitsToSize(bps, 1000) + " [" + addCommas(pps) + " pps]");
$('#chart-local2remote-text').html("&nbsp;"+bitsToSize(bps_local2remote, 1000));
$('#chart-remote2local-text').html("&nbsp;"+bitsToSize(bps_remote2local, 1000));
var msg = "<i class=\"fa fa-time fa-lg\"></i>Uptime: "+rsp.uptime+"<br>";
if(rsp.alerts > 0) {
msg += "&nbsp;<a href=]]
print (ntop.getHttpPrefix())
print [[/lua/show_alerts.lua><i class=\"fa fa-warning fa-lg\" style=\"color: #B94A48;\"></i> <span class=\"label label-danger\">"+addCommas(rsp.alerts)+" Alert";
if(rsp.alerts > 1) msg += "s";
msg += "</span></A> ";
}
var alarm_threshold_low = 60; /* 60% */
var alarm_threshold_high = 90; /* 90% */
var alert = 0;
msg += "<a href=]]
print (ntop.getHttpPrefix())
print [[/lua/hosts_stats.lua>";
if(rsp.hosts_pctg < alarm_threshold_low) {
msg += "<span class=\"label label-default\">";
} else if(rsp.hosts_pctg < alarm_threshold_high) {
alert = 1;
msg += "<span class=\"label label-warning\">";
} else {
alert = 1;
msg += "<span class=\"label label-danger\">";
}
msg += addCommas(rsp.num_hosts)+" Hosts</span></a> ";
msg += "<a href=]]
print (ntop.getHttpPrefix())
print [[/lua/aggregated_hosts_stats.lua>";
if(rsp.num_aggregations > 0) {
if(rsp.aggregations_pctg < alarm_threshold_low) {
msg += "<span class=\"label label-default\">";
} else if(rsp.aggregations_pctg < alarm_threshold_high) {
alert = 1;
msg += "<span class=\"label label-warning\">";
} else {
alert = 1;
msg += "<span class=\"label label-danger\">";
}
msg += addCommas(rsp.num_aggregations)+" Aggregations</span></a>";
}
msg += "&nbsp;<a href=]]
print (ntop.getHttpPrefix())
print [[/lua/flows_stats.lua>";
if(rsp.flows_pctg < alarm_threshold_low) {
msg += "<span class=\"label label-default\">";
} else if(rsp.flows_pctg < alarm_threshold_high) {
alert = 1;
msg += "<span class=\"label label-warning\">";
} else {
alert = 1;
msg += "<span class=\"label label-danger\">";
}
msg += addCommas(rsp.num_flows)+" Flows </span> </a>";
$('#network-load').html(msg);
gauge.set(Math.min(bps, gauge.maxValue));
if(alert) {
$('#toomany').html("<div class='alert alert-warning'><h4>Warning</h4>You have too many hosts/flows for your ntopng configuration and this will lead to packet drops and high CPU load. Please restart ntopng increasing -x and -X.</div>");
}
}
} else {
/* $('#network-load').html("[No traffic (yet)]"); */
}
prev_bytes = rsp.bytes;
prev_packets = rsp.packets;
prev_local = rsp.local2remote;
prev_remote = rsp.remote2local;
prev_epoch = rsp.epoch;
} catch(e) {
console.log(e);
/* alert("JSON Error (session expired?): logging out"); window.location.replace("]]
print (ntop.getHttpPrefix())
print [[/lua/logout.lua"); */
}
}
});
}, 1000)
//Enable tooltip without a fixer placement
$(document).ready(function () { $("[rel='tooltip']").tooltip(); });
$(document).ready(function () { $("a").tooltip({ 'selector': ''});});
$(document).ready(function () { $("i").tooltip({ 'selector': ''});});
//Automatically open dropdown-menu
$(document).ready(function(){
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(150).fadeIn(100);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(150).fadeOut(100);
});
});
</script>
</div> <!-- / header main container -->
</body>
</html> ]]