1 | initial version |
Here's the answer from the old Q&A site:
How to Export the pcap file statistics with csv file format.
4 If you need the data in CSV format, there are (at least) these options:
Use the GUI: Statistics -> Conversations -> TCP -> Copy. This will copy the screen content as CSV into the clipboard.
Use tshark: tshark will not export the conversation data in CSV format, so you either convert it to CSV with Excel (while importing the data) or use a script (perl, python, watherver) to convert that output to csv.
Extend the tshark code to export CSV structured data.
And the open issue asking to add it : 10759 - Tshark -z io,stat options export to csv format
2 | No.2 Revision |
Here's the answer from the old Q&A site:
site:
How to Export the pcap file statistics with csv file format.
4 If you need the data in CSV format, there are (at least) these options:
Use the GUI: Statistics -> Conversations -> TCP -> Copy. This will copy the screen content as CSV into the clipboard.
Use tshark: tshark will not export the conversation data in CSV format, so you either convert it to CSV with Excel (while importing the data) or use a script (perl, python, watherver) to convert that output to csv.
Extend the tshark code to export CSV structured data.
And the open issue asking to add it : 10759 - Tshark -z io,stat options export to csv format