-- -- (C) 2013-17 - ntop.org -- dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path local shaper_utils if ntop.isPro() then package.path = dirs.installdir .. "/scripts/lua/pro/modules/?.lua;" .. package.path shaper_utils = require("shaper_utils") end require "lua_utils" require "historical_utils" require "flow_utils" require "voip_utils" local json = require ("dkjson") sendHTTPContentTypeHeader('text/html') ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/header.inc") warn_shown = 0 function displayProc(proc) print("
| ") if(ifstats.sprobe) then print(i18n("details.source_id")) else print(i18n("details.vlan_id")) end print(" | " .. flow["vlan"].. " | |||
|---|---|---|---|---|
| "..i18n("flow_details.flow_peers_client_server").." | "..getFlowLabel(flow, true, true).." | |||
| "..i18n("protocol").." | ") if((ifstats.inline and flow["verdict.pass"]) or (flow.vrfId ~= nil)) then print("") else print(" | ")
end
if(flow["verdict.pass"] == false) then print(" | ')
if(flow.vrfId ~= nil) then
print("VRF Id "..flow.vrfId.." | ") end print("|
| "..i18n("flow_details.flow_shapers").." | ") c = flowinfo2hostname(flow,"cli") s = flowinfo2hostname(flow,"srv") cli_max_rate = shaper_utils.getShaperMaxRate(ifstats.id, flow["shaper.cli2srv_ingress"]) if(cli_max_rate == "") then cli_max_rate = -1 end srv_max_rate = shaper_utils.getShaperMaxRate(ifstats.id, flow["shaper.cli2srv_egress"]) if(srv_max_rate == "") then srv_max_rate = -1 end max_rate = getFlowMaxRate(cli_max_rate, srv_max_rate) print(""..c.." "..s.." | "..shaper_utils.shaperRateToString(max_rate).." | "..c.." "..s.." | "..shaper_utils.shaperRateToString(max_rate).." | ") print("") if flow["cli.pool_id"] ~= nil and flow["srv.pool_id"] ~= nil then print("
| "..i18n("flow_details.flow_quota").." | ") print(""..c.." "..s.." | ") print("") printFlowQuota(ifstats.id, flow, true --[[ client ]]) print(" | "..c.." "..s.." | ") print("") printFlowQuota(ifstats.id, flow, false --[[ server ]]) print(" | ") print("") end end print("
| "..i18n("details.first_last_seen").." | " .. formatEpoch(flow["seen.first"]) .. " [" .. secondsToTime(os.time()-flow["seen.first"]) .. " "..i18n("details.ago").."]" .. " | \n")
print("" .. formatEpoch(flow["seen.last"]) .. " [" .. secondsToTime(os.time()-flow["seen.last"]) .. " "..i18n("details.ago").."]" .. " | ||
| "..i18n("details.total_traffic").." | "..i18n("total")..": " .. bytesToSize(flow["bytes"]) .. " | ") if((ifstats.type ~= "zmq") and ((flow["proto.l4"] == "TCP") or (flow["proto.l4"] == "UDP")) and (flow["goodput_bytes"] > 0)) then print(""..i18n("details.goodput")..": " .. bytesToSize(flow["goodput_bytes"]) .. " (") pctg = round(((flow["goodput_bytes"]*100)/flow["bytes"]), 2) if(pctg < 50) then pctg = ""..pctg.."" elseif(pctg < 60) then pctg = ""..pctg.."" end print(pctg.."") print(" %) | \n") end print(" | |
| " .. i18n("client") .. " " .. i18n("server") .. ": " .. formatPackets(flow["cli2srv.packets"]) .. " / ".. bytesToSize(flow["cli2srv.bytes"]) .. " | " .. i18n("client") .. " " .. i18n("server") .. ": " .. formatPackets(flow["srv2cli.packets"]) .. " / ".. bytesToSize(flow["srv2cli.bytes"]) .. " | |||
| ")
cli2srv = round((flow["cli2srv.bytes"] * 100) / flow["bytes"], 0)
cli_name = shortHostName(getResolvedAddress(hostkey2hostinfo(flow["cli.ip"])))
srv_name = shortHostName(getResolvedAddress(hostkey2hostinfo(flow["srv.ip"])))
if(flow["cli.port"] > 0) then
cli_name = cli_name .. ":" .. flow["cli.port"]
srv_name = srv_name .. ":" .. flow["srv.port"]
end
print(' ')
print(" | ||||
| "..i18n("flow_details.network_latency_breakdown").." | ")
cli2srv = round(((flow["tcp.nw_latency.client"] * 100) / s), 0)
c = string.format("%.3f", flow["tcp.nw_latency.client"])
print(' ')
s = string.format("%.3f", flow["tcp.nw_latency.server"])
print(' ')
print(" | |||
| "..i18n("flow_details.application_latency").." | "..msToTime(flow["tcp.appl_latency"]).." | |||
| "..i18n("flow_details.packet_inter_arrival_time").." | "..i18n("client").." "..i18n("server")..": ") print(msToTime(flow["interarrival.cli2srv"]["min"]).." / "..msToTime(flow["interarrival.cli2srv"]["avg"]).." / "..msToTime(flow["interarrival.cli2srv"]["max"])) print(" | \n") if(flow["srv2cli.packets"] < 2) then print("") else print(" | "..i18n("client").." "..i18n("server")..": ") print(msToTime(flow["interarrival.srv2cli"]["min"]).." / "..msToTime(flow["interarrival.srv2cli"]["avg"]).." / "..msToTime(flow["interarrival.srv2cli"]["max"])) end print(" | |
| "..i18n("flow_details.looks_like_idle_flow_message").." | ||||
| "..i18n("flow_details.tcp_packet_analysis").." | ||||
| "..i18n("client").." "..i18n("server").." / "..i18n("client").." "..i18n("server").." | ||||
| "..i18n("details.retransmissions").." | ".. formatPackets(flow["cli2srv.retransmissions"]) .." / ".. formatPackets(flow["srv2cli.retransmissions"]) .." | |||
| "..i18n("details.out_of_order").." | ".. formatPackets(flow["cli2srv.out_of_order"]) .." / ".. formatPackets(flow["srv2cli.out_of_order"]) .." | |||
| "..i18n("details.lost").." | ".. formatPackets(flow["cli2srv.lost"]) .." / ".. formatPackets(flow["srv2cli.lost"]) .." | |||
| "..i18n("flow_details.ssl_certificate").." | ") print(i18n("flow_details.client_requested")..": "..flow["protos.ssl.certificate"].." ") if(flow["category"] ~= nil) then print(" "..getCategoryIcon(flow["protos.ssl.certificate"], flow["category"])) end historicalProtoHostHref(ifid, nil, nil, nil, flow["protos.ssl.certificate"]) print(" | ") if(flow["protos.ssl.server_certificate"] ~= nil) then print(""..i18n("flow_details.server_certificate")..": "..flow["protos.ssl.server_certificate"].."")
if(flow["flow.status"] == 10) then
print("\n "..i18n("flow_details.certificates_not_match").."") end print(" | ")
end
print("||
| ".. ''.. i18n("flow_details.max_estimated_tcp_throughput").." | "..i18n("client").." "..i18n("server")..": ") print(bitsToSize(flow["tcp.max_thpt.cli2srv"])) print(" | "..i18n("client").." "..i18n("server")..": ") print(bitsToSize(flow["tcp.max_thpt.srv2cli"])) print(" | ||
| "..i18n("flow_details.throughput_trend").." | "..flow["cli.ip"].." "..flow["srv.ip"]..": ") print(flow["cli2srv.trend"]) print(" | "..flow["cli.ip"].." "..flow["srv.ip"]..": ") print(flow["srv2cli.trend"]) print(" | ||
| "..i18n("tcp_flags").." | "..i18n("client").." "..i18n("server")..": ") printTCPFlags(flow["cli2srv.tcp_flags"]) print(" | "..i18n("client").." "..i18n("server")..": ") printTCPFlags(flow["srv2cli.tcp_flags"]) print(" | ||
| ") flow_completed = false flow_reset = false flows_syn_seen = false resetter = "" if(hasbit(flags,0x01)) then flow_completed = true end if(hasbit(flags,0x02)) then flows_syn_seen = true end if(hasbit(flags,0x04)) then flow_completed = true flow_reset = true if(hasbit(flow["cli2srv.tcp_flags"],0x04)) then resetter = "client" else resetter = "server" end end local flow_msg="" if flow_reset == true then flow_msg = " " if resetter ~= nil and resetter ~= "" then flow_msg = flow_msg..i18n("flow_details.flow_reset_by_resetter_msg",{resetter=resetter}) else flow_msg = flow_msg..i18n("flow_details.flow_reset_msg") end flow_msg = flow_msg.."." elseif flow_completed == true then flow_msg = flow_msg.." "..i18n("flow_details.flow_completed_msg").."." else flow_msg = flow_msg.." "..i18n("flow_details.flow_active_msg").."." if flows_syn_seen == false then flow_msg = flow_msg.." "..i18n("flow_details.flow_peer_roles_inaccurate_msg").."" end end print(flow_msg) print(" | ||||
| "..i18n("flow_details.icmp_info").." | ".. getICMPTypeCode(icmp) .. " | |||
| "..i18n("flow_details.flow_status").." | "..getFlowStatus(flow["flow.status"]).." | |||
| "..i18n("flow_details.actual_peak_throughput").." | ") if (throughput_type == "bps") then print("" .. bitsToSize(8*flow["throughput_bps"]) .. " ") elseif (throughput_type == "pps") then print("" .. pktsToSize(flow["throughput_bps"]) .. " ") end if (throughput_type == "bps") then print(" / " .. bitsToSize(8*flow["top_throughput_bps"]) .. " ") elseif (throughput_type == "pps") then print(" / " .. pktsToSize(flow["top_throughput_bps"]) .. " ") end print(" | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0") print(" | ||
| ') width = 1024 height = 200 url = ntop.getHttpPrefix().."/lua/sprobe_flow_data.lua?flow_key="..flow_key dofile(dirs.installdir .. "/scripts/lua/inc/sprobe.lua") print(' | ||||
| "..i18n("flow_details.client_process_information").." | ||||
| "..i18n("flow_details.server_process_information").." | ||||
| "..i18n("flow_details.dns_query").." | ") if(string.ends(flow["protos.dns.last_query"], "arpa")) then print(flow["protos.dns.last_query"]) else print(""..flow["protos.dns.last_query"].." ") end if(flow["category"] ~= nil) then print(" "..getCategoryIcon(flow["protos.dns.last_query"], flow["category"])) end print(" | |||
| "..i18n("flow_details.bittorrent_hash").." | ".. flow["bittorrent_hash"].." | |||
| "..i18n("flow_details.ssh_signature").." | "..i18n("client")..": "..flow["protos.ssh.client_signature"].." | "..i18n("server")..": "..flow["protos.ssh.server_signature"].." | ||
| "..i18n("http").." | "..i18n("flow_details.http_method").." | "..flow["protos.http.last_method"].." | ||
| "..i18n("flow_details.server_name").." | ") if(flow["host_server_name"] ~= nil and flow["host_server_name"] ~= "") then s = flow["host_server_name"] else s = flowinfo2hostname(flow,"srv") end print(""..s.." ") if(flow["category"] ~= nil) then print(" "..getCategoryIcon(flow["host_server_name"], flow["category"])) end print(" | |||
| "..i18n("flow_details.url").." | ") if(flow["protos.http.last_url"] ~= "") then print(""..shortenString(flow["protos.http.last_url"]).." ") else print(shortenString(flow["protos.http.last_url"])) end print(" | |||
| "..i18n("flow_details.response_code").." | "..flow["protos.http.last_return_code"].." | |||
| "..i18n("flow_details.server_name").." | "..flow["host_server_name"].." | |||
| "..i18n("flow_details.profile_name").." | "..flow["profile"].." | |||
| "..i18n("flow_details.dump_flow_traffic").." | ") print [[ ') print(" | |||
| "..i18n("flow_details.additional_flow_elements").." | ||||
| " .. getFlowKey(key) .. " | " .. handleCustomFlowField(key, value) .. " | |||