nginx plus 現在推出一個時實活動監視接口,提供關鍵負載(key load )和效能監控。透過簡單的 restful json 接口,連接即時監控統計數據(stats to live dashboards) 和第三方監控工具,都變得輕輕鬆松。
nginx plus 的平
#細節: 線上活動監控– json feed
在nginx plus中啟用此狀態提示,只需簡單地在伺服器設定中新增狀態處理即可:
#複製程式碼 程式碼如下:
location = /status {
allow 192.168.0.0/16; # permit access from local network
deny all; # deny access from everywhere else
(或符合location群組的任何uri),nginx plus將回應一個包含目前活動資料的json文件:
細說: 生命週期監控– 網頁
nginx plus附帶一個簡單的網頁(/usr/share/nginx/html/status.html)用來輪詢狀態信息,並用一個簡單表格來顯示。你可以使用以下配置,啟用這個請求http://host:8080/status.html:
#複製程式碼 程式碼如下:
listen 8080;
root /usr/share/nginx/html;
location = /status {
status ;
以上是怎麼使用Nginx Plus的線上活動監控功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!