Scenario is following:
Android application submits a POST/GET
request to ASP.NET MVC
application sitting on EC2 instance, which then notifies user via SignalR
.
Question is, is there a way to measure an exact time (in milliseconds) from the moment when user submits data on the phone, until that information is displayed in the browser for end user.
I have tried to send a timestamp from the phone, deliver it to end user and calculate total time in javascript, but that is not reliable and accurate.
Any ideas?