Open neopaf opened 2 years ago
Measure time between request and reply and add it as evaluated field, code:
f.reply_time = ProtoField.relative_time("tarantool.reply_time", "Reply time") local s,nsfrac = math.modf(request_time - response_time) local delta = NSTime(s, nsfrac*1e9) subtree:add(f.reply_time, delta):set_generated() end
https://github.com/neopaf/tarantool-dissector/issues/7
in my task I've fixed that. feel free to take that
Measure time between request and reply and add it as evaluated field, code:
https://github.com/neopaf/tarantool-dissector/issues/7