I have a tshark trace dump and want to see the human readable time stamps between NFS READ procedure calls/packets. I understand frame.time_delta might be a good filter expression? Can anyone provide a command line example on how to do this running tshark. I have the RTT stats and READ procedure has very heavy latency so I want to drill down and see if I can understand which file handle(s) might be responsible. Any help is very much appreciated. thanks asked 26 Jan '11, 18:04 debugme |
One Answer:
I used the following before to get a grasp on which NFS calls were taking a lot of time:
If you want to drill down, you might want to use something like:
answered 27 Jan '11, 10:37 SYN-bit ♦♦ |
hi
Thank you for your response. I will use your filter and see what the results are. Thank you again.