I have searched for all existing open AND closed issues and discussions for similar requests. I have found none that is comparable to my request.
Verify Feature Scope
I have read through and understood the scope definition for feature requests in the Issues section. I believe my feature request meets the definition and belongs in the Issues section instead of the Discussions.
Problem Description
I would like GET requests to be added to the audit log. Currently we skip auditing if request is not a POST, PUT, PATCH, or DELETE.
Desired Solution you'd like
Add an Environment variable to be used in audit.py in _should_skip_auditing function so it will not skip for GET if set to true.
Alternatives Considered
Log GET Requests
Additional Context
Issue where it should always log Auths endpoing. This is not the case as if it is a GET it will return true to skip before hitting that line of code.
Originally created by @theck1996 on GitHub (Apr 6, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/23461
### Check Existing Issues
- [x] I have searched for all existing **open AND closed** issues and discussions for similar requests. I have found none that is comparable to my request.
### Verify Feature Scope
- [x] I have read through and understood the scope definition for feature requests in the Issues section. I believe my feature request meets the definition and belongs in the Issues section instead of the Discussions.
### Problem Description
I would like GET requests to be added to the audit log. Currently we skip auditing if request is not a POST, PUT, PATCH, or DELETE.
### Desired Solution you'd like
Add an Environment variable to be used in audit.py in _should_skip_auditing function so it will not skip for GET if set to true.
### Alternatives Considered
Log GET Requests
### Additional Context
Issue where it should always log Auths endpoing. This is not the case as if it is a GET it will return true to skip before hitting that line of code.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @theck1996 on GitHub (Apr 6, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/23461
Check Existing Issues
Verify Feature Scope
Problem Description
I would like GET requests to be added to the audit log. Currently we skip auditing if request is not a POST, PUT, PATCH, or DELETE.
Desired Solution you'd like
Add an Environment variable to be used in audit.py in _should_skip_auditing function so it will not skip for GET if set to true.
Alternatives Considered
Log GET Requests
Additional Context
Issue where it should always log Auths endpoing. This is not the case as if it is a GET it will return true to skip before hitting that line of code.
@tjbck commented on GitHub (Apr 12, 2026):
Addressed in dev.