1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
--
-- (C) 2013-16 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
sendHTTPHeader('text/html; charset=iso-8859-1')
-- Table parameters
all = _GET["all"]
currentPage = _GET["currentPage"]
perPage = _GET["perPage"]
sortColumn = _GET["sortColumn"]
sortOrder = _GET["sortOrder"]
group_col = _GET["grouped_by"]
as_n = _GET["as"]
vlan_n = _GET["vlan"]
network_n = _GET["network"]
country_n = _GET["country"]
os_n = _GET["os"]
if (group_col == nil) then
group_col = "asn"
end
-- Get from redis the throughput type bps or pps
throughput_type = getThroughputType()
if ((sortColumn == nil) or (sortColumn == "column_")) then
sortColumn = getDefaultTableSort(group_col)
--if(sortColumn == "column_") then sortColumn = "column_name" end
else
if ((sortColumn ~= "column_") and (sortColumn ~= "")) then
tablePreferences("sort_"..group_col,sortColumn)
end
end
if(sortOrder == nil) then
sortOrder = getDefaultTableSortOrder(group_col)
else
if ((sortColumn ~= "column_") and (sortColumn ~= "")) then
tablePreferences("sort_order_"..group_col,sortOrder)
end
end
if(currentPage == nil) then
currentPage = 1
else
currentPage = tonumber(currentPage)
end
if(perPage == nil) then
perPage = getDefaultTableSize()
else
perPage = tonumber(perPage)
tablePreferences("rows_number",perPage)
end
to_skip = (currentPage-1) * perPage
if (all ~= nil) then
perPage = 0
currentPage = 0
end
if (as_n == nil and vlan_n == nil and network_n == nil and country_n == nil and os_n == nil) then -- single group info requested
print ("{ \"currentPage\" : " .. currentPage .. ",\n \"data\" : [\n")
end
num = 0
total = 0
now = os.time()
vals = {}
stats_by_group_col = {}
interface.select(ifname)
stats_by_group_key=interface.getGroupedHosts(false, "column_"..group_col, country_n, os_n, tonumber(vlan_n), tonumber(as_n), tonumber(network_n)) -- false = little details)
stats_by_group_col = aggregateGroupStats(stats_by_group_key)
--[[
Prepares a json containing table data, together with HTML.
--]]
function print_single_group(value)
print ('{ ')
print ('\"key\" : \"'..value["id"]..'\",')
print ("\"column_id\" : \"<A HREF='"..ntop.getHttpPrefix().."/lua/")
if (group_col == "asn" or as_n ~= nil) then
print("hosts_stats.lua?asn=" ..tostring(value["id"]) .. "'>")
elseif (group_col == "vlan" or vlan_n ~= nil) then
print("hosts_stats.lua?vlan="..value["id"].."'>")
elseif (group_col == "country" or country_n ~= nil) then
print("hosts_stats.lua?country="..value["id"].."'>")
print(getFlag(value["country"]).."  ")
elseif (group_col == "os" or os_n ~= nil) then
print("hosts_stats.lua?os=".. string.gsub(value["id"], " ", '%%20') .."'>")
if(value["id"] ~= nil ) then
print("".. getOSIcon(value["id"]) .."")
end
elseif (group_col == "local_network_id" or network_n ~= nil) then
print("hosts_stats.lua?network="..tostring(value["id"]).."'>")
elseif (group_col == "antenna_mac") then
print("hosts_stats.lua?antenna_mac="..value["id"].."'>")
elseif (group_col == "mac") then
print("hosts_stats.lua?mac="..value["name"].."'>")
--PRINT
-- io.write("ID = "..value["id"]..'\n')
else
print("hosts_stats.lua'>")
end
if (group_col == "local_network_id" or network_n ~= nil) then
print(value["name"]..'</A> ')
print('", "column_chart": "')
if(tonumber(value["id"]) ~= -1) then
print('<A HREF='..ntop.getHttpPrefix()..'/lua/network_details.lua?network='..value["id"]..'&page=historical><i class=\'fa fa-area-chart fa-lg\'></i></A>')
else
print("-")
end
print('", ')
elseif group_col == "vlan" or vlan_n ~= nil then
print(value["id"]..'</A> ')
print('", "column_chart": "')
if value["id"] ~= "0" then
print('<A HREF='..ntop.getHttpPrefix()..'/lua/vlan_details.lua?vlan_id='..value["id"]..'&page=historical><i class=\'fa fa-area-chart fa-lg\'></i></A>')
end
print('", ')
elseif((group_col == "mac") or (group_col == "antenna_mac")) then
print(get_symbolic_mac(value["name"])..'</A>", ')
elseif(group_col == "country" and value["id"] == "Uncategorized") then
print('</A>'..value["id"]..'", ')
else
print(value["id"]..'</A>", ')
end
print('"column_hosts" : "' .. formatValue(value["num_hosts"]) ..'",')
print ("\"column_alerts\" : \"")
if((value["num_alerts"] ~= nil) and (value["num_alerts"] > 0)) then
print("<font color=#B94A48>"..formatValue(value["num_alerts"]).."</font>")
else
print("0")
end
print('", ')
--- TODO: name for VLANs?
if (group_col == "asn" or as_n ~= nil) then
print("\"column_name\" : \""..printASN(value["id"], value["name"]))
elseif ( group_col == "country" or country_n ~= nil) then
print("\"column_name\" : \""..value["id"])
elseif ( group_col == "os" or os_n ~= nil) then
print("\"column_name\" : \""..value["id"])
else
print("\"column_name\" : \""..value["name"])
end
print(" "..getFlag(value["country"])..'", ')
print("\"column_since\" : \"" .. secondsToTime(now-value["seen.first"]+1) .. "\", ")
sent2rcvd = round((value["bytes.sent"] * 100) / (value["bytes.sent"]+value["bytes.rcvd"]), 0)
print ("\"column_breakdown\" : \"<div class='progress'><div class='progress-bar progress-bar-warning' style='width: "
.. sent2rcvd .."%;'>Sent</div><div class='progress-bar progress-bar-info' style='width: "
.. (100-sent2rcvd) .. "%;'>Rcvd</div></div>")
print('", ')
if (throughput_type == "pps") then
print ("\"column_thpt\" : \"" .. pktsToSize(value["throughput_pps"]).. " ")
else
print ("\"column_thpt\" : \"" .. bitsToSize(8*value["throughput_bps"]).. " ")
end
if(value["throughput_trend_bps_diff"] > 0) then
print("<i class='fa fa-arrow-up'></i>")
elseif(value["throughput_trend_bps_diff"] < 0) then
print("<i class='fa fa-arrow-down'></i>")
else
print("<i class='fa fa-minus'></i>")
end
print('", ')
print("\"column_traffic\" : \"" .. bytesToSize(value["bytes.sent"]+value["bytes.rcvd"]))
print("\" } ")
end
if (as_n ~= nil) then
as_val = stats_by_group_col[tonumber(as_n)]
if (as_val == nil)then
print('{}')
else
print_single_group(as_val)
end
stats_by_group_col = {}
elseif (country_n ~= nil) then
country_val = stats_by_group_col[country_n]
if (country_val == nil) then
print('{}')
else
print_single_group(country_val)
end
stats_by_group_col = {}
elseif (os_n ~= nil) then
os_val = stats_by_group_col[os_n]
if (os_val == nil) then
print('{}')
else
print_single_group(os_val)
end
stats_by_group_col = {}
elseif (vlan_n ~= nil) then
vlan_val = stats_by_group_col[tonumber(vlan_n)]
if (vlan_val == nil) then
print('{}')
else
print_single_group(vlan_val)
end
stats_by_group_col = {}
elseif (network_n ~= nil) then
network_val = stats_by_group_col[tonumber(network_n)]
if (network_val == nil) then
print('{}')
else
print_single_group(network_val)
end
stats_by_group_col = {}
end
vals = { }
for key,value in pairs(stats_by_group_col) do
v = stats_by_group_col[key]
if((key ~= nil) and (v ~= nil)) then
if(sortColumn == "column_id") then
vals[key] = key
elseif(sortColumn == "column_name") then
vals[key] = v["name"]
elseif(sortColumn == "column_hosts") then
vals[key] = v["num_hosts"]
elseif(sortColumn == "column_since") then
vals[key] = (now-v["seen.first"])
elseif(sortColumn == "column_alerts") then
vals[key] = (now-v["num_alerts"])
elseif(sortColumn == "column_last") then
vals[key] = (now-stats_by_group_key[col]["seen.last"]+1)
elseif(sortColumn == "column_thpt") then
vals[key] = v["throughput_"..throughput_type]
elseif(sortColumn == "column_queries") then
vals[key] = v["queries.rcvd"]
else
vals[key] = (v["bytes.sent"] + v["bytes.rcvd"])
end
end
end
--table.sort(vals)
if(sortOrder == "asc") then
funct = asc
else
funct = rev
end
num = 0
for _key, _value in pairsByValues(vals, funct) do
if((_key ~= nil) and (not(_key == ""))) then
value = stats_by_group_col[_key]
if(to_skip > 0) then
to_skip = to_skip-1
else
if((num < perPage) or (all ~= nil))then
if(num > 0) then
print ",\n"
end
print_single_group(value)
num = num + 1
end
end
total = total + 1
end
end -- for
if (as_n == nil and vlan_n == nil and network_n == nil and country_n == nil and os_n == nil) then -- single group info requested
print ("\n], \"perPage\" : " .. perPage .. ",\n")
end
if(sortColumn == nil) then
sortColumn = ""
end
if(sortOrder == nil) then
sortOrder = ""
end
if (as_n == nil and vlan_n == nil and network_n == nil and country_n == nil and os_n == nil) then -- single group info requested
print ("\"sort\" : [ [ \"" .. sortColumn .. "\", \"" .. sortOrder .."\" ] ],\n")
print ("\"totalRows\" : " .. total .. " \n}")
end
|