aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Deri <lucaderi@users.noreply.github.com>2020-04-15 08:37:28 +0200
committerGitHub <noreply@github.com>2020-04-15 08:37:28 +0200
commit7b54d028a34be65f786344ff66893fb137abc39b (patch)
treef63b0691380fdeda2ef1ed5dd9dcf88a2768b00b
parent9cba06a080532797d6b14a0ef72fb543d60cdff0 (diff)
parent1bee9d85a41054d0b4802067c8beed930569906f (diff)
Merge pull request #872 from aouinizied/dev
Update python example.
-rw-r--r--python/flow_printer.py10
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.")