Wireshark-bugs: [Wireshark-bugs] [Bug 10355] LUA: Can't plot float values in IO Graph
Date: Mon, 29 Jun 2015 18:02:31 +0000

Comment # 1 on bug 10355 from
I don't know the IO graph very well, but it seems to work for me - it's just
that "transom.art" is a very small value (less than 1.0), so the graph shows a
flat line because it's as low as it goes. (at least on GTK)

If you change this line in your Lua script:
    new_item = subtree:add(rte_art_F, rte_art[apdu_id])
to this:
    new_item = subtree:add(rte_art_F, rte_art[apdu_id] * 10000)
...then you'll see the values being plotted.


You are receiving this mail because:
  • You are watching all bug changes.