I have got counters based on 2 sec interval.
Total number of time intervals is not static (it will vary). Please let me know how can I achieve the desired results. asked 16 Oct '13, 03:52 npatel edited 15 Sep '14, 22:37 Guy Harris ♦♦ |
One Answer:
By parsing the output and by checking if your defined conditions do match.
No. Who should do it if not you !?! ;-)) The be more precise: There is no built-in mechanism in Wireshark/tshark that will do it for you automatically. Instead of using tshark, you could create the same with an IO Graph and then check 'visually' (look at the graph) if the COUNT() value exceeds a certain limit.
As mentioned, there is no automatism in Wireshark/tshark to generate alerts if a traffic pattern meets a certain condition (although that would be a cool feature in Wireshark!). So, it's up to you to parse the tshark output with a script and then generate whatever alert you need.
Either do it yourself in a script or feed the tshark output into a spreadsheet software and calculate the average there. Regards answered 16 Oct '13, 07:31 Kurt Knochner ♦ edited 16 Oct '13, 07:44 |