ntopng/scripts/lua/host_details_ndpi.lua
Emanuele Faranda 4cbe45a948
New pro charts features and timeseries api (#1865)
* Integrate modified nvd3 library with zoom and multicharts working support

* Fix count in RRD driver

* Initial chart ajax migration

* Update nvd3 with zoom stack support

* Fix RRD listSeries with directories

* Work in progress graphs

* Compatibility fix

* Initial support for schema based api

* Add missing script

* Fix listSeries for existance check

* Implement topk timseries api

* Implement topk queries and fix labels and formats

* Migrate interface top sender and receivers

* Migrate charts to new API

* Move timeseries list for menu inside respective scripts

* Add support for extended labels

* Fix missing fields while chaning graph resolution

Also Rename drawRRD in drawGraphs

* Fix historical tabs

* Add missing time fence in influx topk

* Add graphs support for custom statistics visualization

* Initial support for graphs statistics footer

* Implement statistics in single graphs for RRD driver

* Move sampling function into the driver and fix graph statistics

* Fix max/min value offset

* Implement influxdb sampling use built-in FILL

* Implement stats and total serie in influxdb driver

* Update nvd3 with multiChart fixes

* Update nvd3 with new multiChart fixes

* RRD driver fixes

* Move metrics type from single metric to schema

* Handle ajax errors and empty data in charts

* Fix flow device interfaces graphs

* Use timeserie label as timeseries dropdown text

* Implement topk aggregation into one data serie

* ts_utils module now provides all the schemas

* Migrate ntop.exist(rrd) to ts_utils.exist

* Fix timeseries dropdown label

* L4 protos fixes for charts

* Migrate getProtoVolume to new API

* Integrate nvd3 fix for tooltip position

* Initial community graphs migration to timseries API

* Fix community timeseries dropdown and historical tabs

* Hide total serie by default

* Remove l4 protos from topk charts
2018-07-18 15:09:19 +02:00

118 lines
3.5 KiB
Lua

--
-- (C) 2013-18 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
require "graph_utils"
require "historical_utils"
local ts_utils = require("ts_utils")
sendHTTPContentTypeHeader('text/html')
ifid = _GET["ifid"]
direction = _GET["sflow_filter"]
interface.select(ifid)
local host_info = url2hostinfo(_GET)
local host_ip = host_info["host"]
local host_vlan = host_info["vlan"]
local host = interface.getHostInfo(host_ip, host_vlan)
local now = os.time()
local ago1h = now - 3600
local protos = interface.getnDPIProtocols()
if(host == nil) then
print("<div class=\"alert alert-danger\"><img src=".. ntop.getHttpPrefix() .. "/img/warning.png> "..i18n("ndpi_page.unable_to_find_host",{host_ip=host_ip}).."</div>")
return
end
local FILTER_SENT_ONLY = "sent"
local FILTER_RECV_ONLY = "recv"
vals = {}
for k in pairs(host["ndpi"]) do
vals[k] = k
-- print(k)
end
table.sort(vals)
local filter_pass = function(row)
local isok
if direction == FILTER_SENT_ONLY and row["bytes.rcvd"] ~= 0 then
isok = false
elseif direction == FILTER_RECV_ONLY and row["bytes.sent"] ~= 0 then
isok = false
else
isok = true
end
return isok
end
local total_sent
local total_recv
if direction ~= nil then
total_sent = 0
total_recv = 0
for _k in pairsByKeys(vals , desc) do
k = vals[_k]
if filter_pass(host["ndpi"][k]) then
total_sent = total_sent + host["ndpi"][k]["bytes.sent"]
total_recv = total_recv + host["ndpi"][k]["bytes.rcvd"]
end
end
else
total_sent = host["bytes.sent"]
total_recv = host["bytes.rcvd"]
end
local total = total_sent + total_recv
print("<tr><td>Total</td><td class=\"text-right\">".. secondsToTime(host["total_activity_time"]) .."</td><td class=\"text-right\">" .. bytesToSize(total_sent) .. "</td><td class=\"text-right\">" .. bytesToSize(total_recv) .. "</td>")
print("<td>")
breakdownBar(total_sent, i18n("ndpi_page.sent"), total_recv, i18n("ndpi_page.rcvd"), 0, 100)
print("</td>\n")
print("<td colspan=2 class=\"text-right\">" .. bytesToSize(total).. "</td></tr>\n")
for _k in pairsByKeys(vals , desc) do
k = vals[_k]
if filter_pass(host["ndpi"][k]) then
print("<tr><td>")
if(ts_utils.exists("host:ndpi", {ifid=ifid, host=host_ip, protocol=k})) then
print("<A HREF=\""..ntop.getHttpPrefix().."/lua/host_details.lua?ifid="..ifid.."&"..hostinfo2url(host_info) .. "&page=historical&ts_schema=host:ndpi&protocol=".. k .."\">"..k.." "..formatBreed(host["ndpi"][k]["breed"]).."</A>")
else
print(k.." "..formatBreed(host["ndpi"][k]["breed"]))
end
t = host["ndpi"][k]["bytes.sent"]+host["ndpi"][k]["bytes.rcvd"]
if((host["ndpi"][k]["bytes.sent"] == 0) and (host["ndpi"][k]["bytes.rcvd"] > 0)) then
print(" <i class=\"fa fa-warning fa-lg\" style=\"color: orange;\"></i>")
end
historicalProtoHostHref(getInterfaceId(ifname), host, nil, protos[k], nil)
print('</td>')
print("<td class=\"text-right\">" .. secondsToTime(host["ndpi"][k]["duration"]) .. "</td>")
print("<td class=\"text-right\">" .. bytesToSize(host["ndpi"][k]["bytes.sent"]) .. "</td><td class=\"text-right\">" .. bytesToSize(host["ndpi"][k]["bytes.rcvd"]) .. "</td>")
print("<td>")
breakdownBar(host["ndpi"][k]["bytes.sent"], i18n("ndpi_page.sent"), host["ndpi"][k]["bytes.rcvd"], i18n("ndpi_page.rcvd"), 0, 100)
print("</td>\n")
print("<td class=\"text-right\">" .. bytesToSize(t).. "</td><td class=\"text-right\">" .. round((t * 100)/total, 2).. " %</td></tr>\n")
end
end