Hi all, I am using tshark to sniff HTTP content on a very busy server and I see that the CPU usage of the tshark process is very high. This is the command line I am using: tshark.exe -i3 -l -f "tcp port 80" -O http -d tcp.port==80,http -o "ip.use_geoip:FALSE" -R "not tcp.analysis.duplicate_ack" -T fields -e ip.host -e tcp.port -e http.request.full_uri -e http.request.method -e http.response.code -e http.response.phrase -e http.content_length -e data -e text -E separator=;2>&0 Is there anything I can do to get the same result - but with better performance? Can anyone point to any part of the command line that might be the reason for the high CPU usage? Thanks David asked 04 Mar '13, 11:34 David Sackstein |
2 Answers:
Wow, this is some tshark command line. I assume you need the answered 04 Mar '13, 15:00 Jaap ♦ |
please try this:
instead of
Regards answered 05 Mar '13, 12:26 Kurt Knochner ♦ |
Hi Kurt, Thanks for this tip. Is the order of the options actually important too? Must -n be before -i3? Thanks David
The order does not matter.