Is this possible ? I'm attempting to obtain the number current/active SSL TPS on our F5s
Below are the OID strings we need to capture with Orion:
sysClientsslStatTotNativeConns - .1.3.6.1.4.1.3375.2.1.1.2.9.6 <--Got it
sysClientsslStatTotCompatConns - .1.3.6.1.4.1.3375.2.1.1.2.9.9 <--Got it
Now we need to apply some intelligence to the collected statistics:
<sysClientsslStatTotNativeConns2> - <sysClientsslStatTotNativeConns1>
= <DeltasysClientsslStatTotNativeConns> <---Can't get this
<sysClientsslStatTotCompatConns2> - <sysClientsslStatTotCompatConns1>
= <DeltasysClientsslStatTotCompatConns> <---Can't get this
After we get the results from the above calculations, we then need to perform the next calculation from the results above:
( <DeltasysClientsslStatTotNativeConns> + DeltasysClientsslStatTotCompatConns> ) /<interval>=TPS
The TPS will provide the number current/active SSL Transactions per Second.