diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-01-27 01:39:03 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-01-27 01:39:03 +0100 |
commit | 58439a676116baffb04a24a59ebae81780528327 (patch) | |
tree | f6eff64c94247cc125f11e4f8974f6eebffa30d7 /examples/py-flow-info/flow-info.py | |
parent | 5e313f43f956dd3a94c65529bad7a90d63c5a0e5 (diff) |
Minor fixes.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/py-flow-info/flow-info.py')
-rwxr-xr-x | examples/py-flow-info/flow-info.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/py-flow-info/flow-info.py b/examples/py-flow-info/flow-info.py index c4324ef53..6f94dbece 100755 --- a/examples/py-flow-info/flow-info.py +++ b/examples/py-flow-info/flow-info.py @@ -235,6 +235,10 @@ def onFlowCleanup(instance, current_flow, global_user_data): def onJsonLineRecvd(json_dict, instance, current_flow, global_user_data): stats = global_user_data stats.update(json_dict, current_flow) + + if 'packet_event_id' in json_dict: + return True + stats.resetStatus() instance_and_source = '' |