以下是一些免费的 Nginx 监控工具和解决方案,涵盖日志分析、实时监控、性能指标收集等场景,适合不同需求:
GoAccess
apt install goaccess
goaccess /var/log/nginx/access.log -o report.html --log-format=COMBINED
AWStats
Prometheus + Grafana
nginx-module-vts
或 nginx-prometheus-exporter
暴露指标(如连接数、请求速率)。Netdata
bash <(curl -Ss https://my-netdata.io/kickstart.sh)
Nginx Amplify (免费基础版)
VTS (Nginx Virtual Host Traffic Status)
vhost_traffic_status_zone;
server {
listen 8080;
location /status {
vhost_traffic_status_display;
access_log off;
}
}
ELK Stack (Elasticsearch + Logstash + Kibana)
Fluentd + Grafana
top
命令)。pip install ngxtop
ngxtop -l /var/log/nginx/access.log
如果需要更详细的配置指南或特定工具的部署步骤,可以进一步说明需求!