Testing the performance of NGINX for both http and https traffic.

Francis Daly francis at daoine.org
Fri Jun 19 13:17:45 UTC 2020


On Tue, Jun 16, 2020 at 08:16:28PM +0530, Kaushal Shriyan wrote:

Hi there,

> Is there a way to find out the below mentioned
> performance metrics.
> 
>    1. Measure Nginx webserver performance for both http and https traffic.
>    2. Measure system resources like CPU, Memory (RAM) and Network bandwidth
>    consumed by Nginx web server to handle both http and https traffic.

There is not much nginx-specific in the question here.

For measuring webserver performance, your favourite web search engine
will probably give lots of links.

"ab" and "siege" have been around for a while.

For measuring system resource usage, search for generic tools suitable
for your operating system.

You could periodically run commands like "uptime" and "free" and see how
they change as the load changes. Or use something like "sar" to handle
the "periodic" part.

"network traffic" during a web request is probably most easily counted
by the client. If you do care about network retries and the like,
then monitoring the interface traffic using something like "bmon" or
well-known snmp polling may be useful.


Overall - measuring performance or resource metrics is mostly unrelated
to the thing being tested. The hard part is usually deciding what you
do and do not want to measure. Then find (or build) a tool that does
what you want and does not do what you do not want.

So you may find it useful to investigate measuring tools for your system,
while waiting to see if there is a more specific answer provided on
the list.

Good luck with it,

	f
-- 
Francis Daly        francis at daoine.org


More information about the nginx mailing list