I know that 2 Lua functions are called in a filter when a call is made :
function envoy_on_request(request_handle)
end
function envoy_on_response(response_handle)
end
How can I retrieve the Request URI Path/query params from the request_handle?
EDIT: I found a couple of headers called ":path" and "x-original-url" but which is the source of truth?