- NGINX Cookbook
- Tim Butler
- 155字
- 2021-07-03 00:04:21
How it works...
Let's take apart the details line-by-line:
- The Active connections line lists the amount of connections to the server. For a quiet server, this could be less than a dozen. For a busy server, expect this to be in the hundreds.
- The server accepts handled requests line is little confusing, since it's represented by three numbers (81, 81, and 177 in this example). The first number represents the amount of accepted connections. The second number represents the total number of handled connections. Unless there's a resource limitation, the number of accepted and handled connections should be the same. Next, we have the total number of client requests.
- The last line represents the state of the active connections. Reading means NGINX is reading the request headers, Writing means NGINX is writing data back to the client, and Waiting means that the client is now idle but still has the connection open (due to keep-alives).
推薦閱讀
- Java應用與實戰
- Objective-C Memory Management Essentials
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- Mastering Entity Framework
- Servlet/JSP深入詳解
- Python數據可視化之Matplotlib與Pyecharts實戰
- OpenShift在企業中的實踐:PaaS DevOps微服務(第2版)
- 深入RabbitMQ
- Unity Game Development Scripting
- 區塊鏈技術與應用
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- UML2面向對象分析與設計(第2版)
- Learning Concurrency in Python
- HTML5與CSS3權威指南
- Java程序設計