理解了,你希望在 OpenResty 中将自定义状态输出到 log_format
中的日志格式里。你可以使用 Nginx 的变量机制将自定义状态记录到日志中。
步骤如下:
- 使用
set_by_lua
指令在请求处理过程中设置自定义变量。 - 在
log_format
中引用该自定义变量。
以下是一个完整的示例配置:
http {lua_shared_dict my_dict 1m;# 定义日志格式log_format custom_log_format '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for" ''$custom_status';# 将日志输出到文件access_log /var/log/nginx/access.log custom_log_format;server {listen 80;location / {# 使用 set_by_lua 设置自定义变量set_by_lua $custom_status 'ngx.ctx.custom_status = "my_custom_status"return ngx.ctx.custom_status';content_by_lua_block {-- 生成并发送响应ngx.say("Hello, OpenResty!")-- 设置自定义状态ngx.ctx.custom_status = "my_custom_status"}}log_by_lua_block {-- 确保自定义状态变量在 log_format 中设置ngx.var.custom_status = ngx.ctx.custom_status or "default_status"}}
}
在这个示例中:
log_format
中定义了一个名为custom_log_format
的日志格式,其中包括自定义变量$custom_status
。access_log
指令指定将日志输出到/var/log/nginx/access.log
,并使用custom_log_format
格式。set_by_lua
指令用于在处理请求时设置自定义变量$custom_status
。这里使用 Lua 代码将自定义状态存储在ngx.ctx.custom_status
中,并返回该状态以设置$custom_status
。- 在
log_by_lua_block
中,将ngx.ctx.custom_status
设置为ngx.var.custom_status
,以确保该变量在log_format
中引用。
这样,自定义状态将被包含在日志格式中,并输出到指定的日志文件中。确保重新加载 Nginx 配置文件以应用更改。