Nginx Plus 提供的在线活动监控功能
想了解你的 Nginx 服务器现在是什么情况? 是被 DoS 攻击, 还是网站出现一堆错误?
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
status;
}
如果你请求/status(或匹配location组的任何URI),NGINX Plus将响应一个包含当前活动数据的JSON文档:
你可以继续往下提取数据子集,或使用RESTfull方式获取单一的数据点:
Drill down to the data you need with NGINX’ Extended Status
细说: 生命周期监控 – 网页
NGINX Plus附带一个简单的网页 (/usr/share/nginx/html/status.html)用来轮询状态信息,并用一个简单表格来显示。你可以使用以下配置,启用这个请求http://host:8080/status.html:
server {
listen 8080;
root /usr/share/nginx/html;
location = /status {
status;
}
}
更多的信息,请查看 状态模块配置说明。
--------------------------------------分割线 --------------------------------------
--------------------------------------分割线 --------------------------------------
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里