<div dir="ltr">I am trying to log all request / response in a stream with a lua script I found in git hub and am having issues figuring out where to put the log_format directive. Here is what I currently have :<br><br>stream {<br><br>    log_format bodylog '$remote_addr - $remote_user [$time_local] '<br>      '"$request" $status $body_bytes_sent '<br>      '"$http_referer" "$http_user_agent" $request_time '<br>      '<"$request_body" >"$resp_body"';<br><br>     lua_need_request_body on;<br><br>     set $resp_body "";<br>     body_filter_by_lua '<br>        local resp_body = ngx.arg[1]<br>        ngx.ctx.buffered = (ngx.ctx.buffered or "") .. resp_body<br>        if ngx.arg[2] then<br>           ngx.var.resp_body = ngx.ctx.buffered<br>        end<br>       ';<br><br>......<br><br>}<br></div>