1

I have some simple web services, retrieving information from a database and storing info in a database, written in C#, using IIS. My boss has asked that my boss I compile a very quick report on the performance of these web services for tomorrow. As an intern with no experience of this, I am wondering what are my options here ? I have roughly 2 hours to spend testing this.

What I have done :

  • Created 2 simple web tests with simple use case flows.
  • Created a load test using a step-load pattern which shows when the application breaks (how many concurrent users results in errors/queries not being returned).

What other important metrics are their to report on ? What are my other options for testing performance here that would be quick, dirty, and most effective ?

Thanks a lot

Simon Kiely
  • 5,880
  • 28
  • 94
  • 180

2 Answers2

0

Simplest Load testing with options on concurrent requests/threads - I use Apache Bench.

Here is a list of output that Bench gives you, maybe some of these metrics help your case.

Srikanth Venugopalan
  • 9,011
  • 3
  • 36
  • 76
0

A couple places to check are ApacheBench which can tell you how many requests/sec you can handle in addition to other metrics.

Also available is the Microsoft Web Capacity Analysis Tool

Jstone05
  • 61
  • 6