-
Looking for the easiest way to log incoming requests along with the proxied requests. This would be primarily for debugging and troubleshooting to ensure that my reverse proxy routes and clusters settings are correct. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
Tratcher
Sep 4, 2020
Replies: 1 comment 1 reply
-
What fields do you expect to be logged? ASP.NET Core already logs these for the incoming request:
And for responses:
HttpProxy currently logs the absolute uri for the outgoing request. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
app2eds
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What fields do you expect to be logged? ASP.NET Core already logs these for the incoming request:
And for responses:
HttpProxy currently logs the absolute uri for the outgoing request.
reverse-proxy/src/ReverseProxy/Service/Proxy/HttpProxy.cs
Line 370 in 43929dc