server {
listen 8080;
server_name localhost;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
这将提供基本的Nginx状态信息,包括: - 活跃连接数 - 接受的连接总数 - 处理的请求总数 - 读取/写入/等待的连接数
server {
listen 9145;
server_name localhost;
location /metrics {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
http {
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" '
'$request_time $upstream_response_time';
access_log /var/log/nginx/access.log main;
}
# 在Nginx配置中添加
server {
location /health {
access_log off;
return 200 "OK";
add_header Content-Type text/plain;
}
}
error_log /var/log/nginx/error.log warn;
http {
limit_conn_zone $binary_remote_addr zone=addr:10m;
server {
limit_conn addr 10;
}
}
http {
log_format json_combined escape=json
'{'
'"time_local":"$time_local",'
'"remote_addr":"$remote_addr",'
'"remote_user":"$remote_user",'
'"request":"$request",'
'"status": "$status",'
'"body_bytes_sent":"$body_bytes_sent",'
'"request_time":"$request_time",'
'"http_referrer":"$http_referer",'
'"http_user_agent":"$http_user_agent"'
'}';
access_log /var/log/nginx/access.log json_combined;
}
您需要根据具体的监控需求和环境调整这些配置。