diff options
author | Zied Aouini <aouinizied@gmail.com> | 2020-04-15 08:05:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 08:05:03 +0200 |
commit | 1bee9d85a41054d0b4802067c8beed930569906f (patch) | |
tree | c8a69fd8b8cdb3b973b185aec98f5615716ec3b3 /python/flow_printer.py | |
parent | d665df64e297051cd5b48605974846fa7076d883 (diff) |
Fix flow_printer example.
Diffstat (limited to 'python/flow_printer.py')
-rw-r--r-- | python/flow_printer.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/flow_printer.py b/python/flow_printer.py index 305500f0f..0b533a898 100644 --- a/python/flow_printer.py +++ b/python/flow_printer.py @@ -5,7 +5,7 @@ file: flow_printer.py This file is part of nfstream. -Copyright (C) 2019 - Zied Aouini <aouinizied@gmail.com> +Copyright (C) 2019-20 - Zied Aouini <aouinizied@gmail.com> nfstream is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. @@ -22,18 +22,18 @@ import sys path = sys.argv[1] -flow_streamer = NFStreamer(source=path) +flow_streamer = NFStreamer(source=path, statistics=True) result = {} try: for flow in flow_streamer: print(flow) try: - result[flow.application_name] += flow.total_packets + result[flow.application_name] += flow.bidirectional_packets except KeyError: - result[flow.application_name] = flow.total_packets + result[flow.application_name] = flow.bidirectional_packets print("Summary (Application Name: Packets):") print(result) except KeyboardInterrupt: print("Summary (Application Name: Packets):") print(result) - print("Terminated.")
\ No newline at end of file + print("Terminated.") |