Added modbus flow details page and modbus info into assets

This commit is contained in:
Matteo Biscosi 2025-12-09 12:24:05 +01:00
parent 77c24ce536
commit 0e9fb8e5e7
18 changed files with 2189 additions and 1885 deletions

View file

@ -2845,3 +2845,15 @@ function format_flow_info_field(flow)
end
-- #######################
-- A one line flow description
-- This uses the information from flow.getInfo()
function formatModbusInfo(proto_info)
local info = {}
if proto_info.modbus then
info = proto_info.modbus
end
return info
end