I need to calculate the service response time between an appliance (if this is of interest for you: a Google Search Appliance) and our internal SAML identity provider. There are some restrictions / conditions I have to live with:
I read some posts about http response times but this can't be used for http over tlsv1. What looks most promising to me is this: because the SAML process consists of one single https URL being processed I would be able to calculate the response time by calculating time between first packet and last packet. Having a look at an example trace I downloaded it should be possible to "group" all tcp packages that belong to one transaction by using for example The figures of Can you tell me if my approach is correct ? And how to specify the filter ? asked 29 Jan '15, 06:08 marged |
One Answer:
You are on the right track, but there is no filter for the last packet in the TCP stream, so you would need to find another anchor point. Here are some options:
Hope this helps! answered 29 Jan '15, 09:41 SYN-bit ♦♦ |