diff options
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 = '' |