I’am trying to make all erroneous access attempts visible to track
- wrong encoding (character encoding issues
encodedCharacters) - all 403/401 (and for now other errors)
So i configured (helm chart)
logs:
general:
level: ERROR
access:
enabled: true
filters:
statuscodes: "400-499,500-599"
format: "json"
Doing so, neither “bad-requests” of wrongly encoded URLs are logged, nor 401 responses are logged.
What am i doing wrong in this case? Do i need to also configure the routes observability ?
Removing statuscode filters, i can see 200/202’s but still no 401/400 (encoding issues).