This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

TAP values in I/O Graph

0

Hi, I've got a dissector in LUA for my own protocol and a TAP to calculate other values : for example number of packets send :

function tap.packet(pinfo, buffer)
counter = counter + 1 
end

function tap.draw(t) window:append("number of packets : " .. counter .. "\n") end

Is it possible to plot the counter value in the wireshark I/O Graph tool ? I guess I need to put counter in a field but I don’t find how to do that.

Thanks,

asked 09 Feb ‘17, 07:30

Schafer's gravatar image

Schafer
6112
accept rate: 0%