Apache-2.2

用於測量命中內容的 Nginx 類似 ApacheTop 的工具?

  • June 16, 2015

Nginx 是否有類似 Apache Top 的工具來測量命中內容?

我想從 Web 伺服器日誌 (Nginx) 中找出最受歡迎的 URL

儘管Nginx Stub 模組可能會派上用場,但我發現它的資訊量不如 apache 對應模組。

根據您的要求,wtop可能是最好的。

我知道這是一個舊執行緒並且已經回答了,但我想注意到apachetop也處理 nginx 日誌文件。唯一需要做的就是修改 nginx.conf 文件以生成類似 apache 的日誌。只需添加或修改以下行:

log_format  main  '$remote_addr $host $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" $ssl_cipher $request_time';

引用自:https://serverfault.com/questions/355015