THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.

Revision history  [back]

As far as I know there's no way to export any graphs directly out of the capture by using Wiresharks cmd tools.

The most common way would be an CSV export and creating the graphs in e.g. Excel.

Here's an example for exporting the names and IP addresses of the source hosts in a capture: tshark -r Capture.pcapng -T fields -e ip.src_host -e ip.src -E header=yes -E separator=; > test.csv

https://www.wireshark.org/docs/wsug_html_chunked/AppToolstshark.html

As far as I know there's no way to export any graphs directly out of the capture by using Wiresharks cmd tools.

The most common way would be an CSV export and creating the graphs in e.g. Excel.

Here's an example for exporting the names and IP addresses of the source hosts in a capture: tshark -r Capture.pcapng -T fields -e ip.src_host -e ip.src -E header=yes -E separator=; > test.csv

https://www.wireshark.org/docs/wsug_html_chunked/AppToolstshark.html