Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You need to split your monitoring in two parts:</p> <ul> <li>How the system interacts with the server (number of calls performed)</li> <li>Amount of network traffic (size of exchanged data for any call)</li> </ul> <p>The first part is (in my experience) often negleted while it has a lot of importance, because acquiring a new connection is often much more expensive that data traffic in itself.</p> <p>You do not tell us anything about the king of connection you're using (low level tcpip calls, web services, WCF or what else) but my suggestion is:</p> <ul> <li>Find a way to determine how many time your application calls the server</li> <li>Find how much any single call is costing in term of data exchanged</li> </ul> <p>How to monitor these values depends a lot from the technology involved, for some is very simple (if, for example, you're using a web service, setting up <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow noreferrer">Fiddler</a> to monitor the calls and examining an monitoring results is very simple), for other you need to work using a low level traffic analyzer like <a href="http://www.wireshark.org/" rel="nofollow noreferrer">Wireshark</a> or <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=f4db40af-1e08-4a21-a26b-ec2f4dc4190d&amp;displaylang=en" rel="nofollow noreferrer">MS Network Monitor</a> and learn how to filter traffic according to IP address of the server, ports used and other parameters.</p> <p>If you clarify your application architecture I can try to be more specific.</p> <p>Regards Massimo</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload