Closed biplovkc closed 3 years ago
Hi! You'll need:
Filter.ByExcluding("RequestPath like '/health%' or RequestPath like '/redoc%'")
HTH!
Hi! You'll need:
Filter.ByExcluding("RequestPath like '/health%' or RequestPath like '/redoc%'")
HTH!
yes this worked thank you
Great, thanks for the follow-up 👍
Health request exclusion works fine, but when I call my api it loads redoc and other js or json files This works fine
Filter.ByExcluding("RequestPath like '/health%'")
but following does notFilter.ByExcluding("RequestPath like '/health%' or '/redoc%'")
following does not even compileFilter.ByExcluding("RequestPath like '/health%' or like '/redoc%'")
Second or(i.e. redoc) is still logged. Anything I am doing wrong?