Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 296 Bytes

log_http_headers.md

File metadata and controls

12 lines (11 loc) · 296 Bytes

Log HTTP Headers

Logging of HTTP headers for enhanced log collection and troubleshooting use cases.

-- HTTP_REQUEST
-- get http headers
headers = avi.http.get_header()
-- iterate across set of headers
for header,value in pairs(headers) do
    avi.vs.log(header .. ":" .. value)
end