This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Radius load(*) graph with in wireshark

0

Hi,

I want to ask question related to radius.

Is there any way to use the LOAD(*) graphs for RADIUS?

Is there any mechanism to generate stats that say :

A nos. of transactions were completed between 0-10ms

B nos. of transactions were completed between 11-20ms

C nos. of transactions were completed between 21-30ms

D nos. of transactions were completed between 31-40ms

E nos. of transactions were completed after 40ms

Regards,

asked 24 Feb '11, 08:16

Vijay%20Gharge's gravatar image

Vijay Gharge
36151620
accept rate: 0%

edited 24 Feb '11, 08:18


One Answer:

1

Sure, but you will have to use COUNT(*) and use the appropriate filters:

radius.time<=0.010
radius.time>0.010 and radius.time<=0.020
radius.time>0.020 and radius.time<=0.030
radius.time>0.030 and radius.time<=0.040
radius.time>0.040

io-graph

answered 24 Feb '11, 09:33

SYN-bit's gravatar image

SYN-bit ♦♦
17.1k957245
accept rate: 20%

Wow! Let me try this...This is simply awesome...

(25 Feb '11, 00:50) Vijay Gharge