Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VAULT-1564 report in-flight requests #13024

Merged
merged 36 commits into from
Dec 8, 2021
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3463e90
VAULT-1564 report in-flight requests
hghaf099 Nov 3, 2021
6420c0c
adding a changelog
hghaf099 Nov 3, 2021
2c3fefe
Changing some variable names and fixing comments
hghaf099 Nov 3, 2021
e2031da
minor style change
hghaf099 Nov 3, 2021
29c5f24
adding unauthenticated support for in-flight-req
hghaf099 Nov 3, 2021
17a4928
adding documentation for the listener.profiling stanza
hghaf099 Nov 3, 2021
18ab7da
adding an atomic counter for the inflight requests
hghaf099 Nov 5, 2021
660ff96
addressing comments
hghaf099 Nov 5, 2021
a06c4a7
Merge branch 'main' into report-in-flight-req
hghaf099 Nov 10, 2021
b2979d5
logging completed requests
hghaf099 Nov 17, 2021
5914acd
fixing a test
hghaf099 Nov 18, 2021
f418b0e
providing log_requests_info as a config option to determine at which …
hghaf099 Nov 18, 2021
c181d15
removing a member and a method from the StatusHeaderResponseWriter st…
hghaf099 Nov 18, 2021
16ed14a
adding api docks
hghaf099 Nov 19, 2021
e9f2312
Merge branch 'main' into report-in-flight-req
hghaf099 Nov 23, 2021
d7682a5
revert changes in NewHTTPResponseWriter
hghaf099 Nov 23, 2021
2ad56c2
Fix logging invalid log_requests_info value
hghaf099 Nov 23, 2021
814128b
Addressing comments
hghaf099 Nov 24, 2021
6ecb241
Fixing a test
hghaf099 Nov 25, 2021
ec22517
use an tomic value for logRequestsInfo, and moving the CreateClientID…
hghaf099 Nov 25, 2021
8a6350e
fixing go.sum
hghaf099 Nov 25, 2021
b9dad8c
minor refactoring
hghaf099 Nov 25, 2021
e3079f0
protecting InFlightRequests from data race
hghaf099 Nov 25, 2021
96e5c71
another try on fixing a data race
hghaf099 Nov 25, 2021
03153e7
another try to fix a data race
hghaf099 Nov 25, 2021
da8a1e0
addressing comments
hghaf099 Dec 6, 2021
18d70ba
Merge branch 'main' into report-in-flight-req
hghaf099 Dec 6, 2021
2a53824
fixing couple of tests
hghaf099 Dec 6, 2021
9893d2e
changing log_requests_info to log_requests_level
hghaf099 Dec 6, 2021
d565b64
minor style change
hghaf099 Dec 6, 2021
97c4cf3
fixing a test
hghaf099 Dec 6, 2021
5649a60
removing the lock in InFlightRequests
hghaf099 Dec 7, 2021
a0bec8d
use single-argument form for interface assertion
hghaf099 Dec 7, 2021
087fb00
adding doc for the new configuration paramter
hghaf099 Dec 7, 2021
5ed569b
adding the new doc to the nav data file
hghaf099 Dec 7, 2021
8c8e5d8
minor fix
hghaf099 Dec 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
minor fix
  • Loading branch information
hghaf099 committed Dec 7, 2021
commit 8c8e5d8e6be268ca2251467be0f7f4408062b24e
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Vault can be configured to log completed requests using the `log_requests_level`

By default, logging completed requests is disabled. To activate the requests logging, set the `log_requests_level`
configuration option in the Vault server configuration to the desired logging level. The acceptable logging levels are
`error`, `warn`, info`, `debug`, and `trace`.
`error`, `warn`, `info`, `debug`, and `trace`.
If the vault server is already running, you can still configure the parameter in the Vault server configuration,
and then send an `SIGHUP` signal to the vault process.

Expand Down