mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-28 04:10:44 -04:00
Add missing telemetry metrics (#4785)
* Add missing telemetry metrics - Add merkle related telemetry - Add WAL related telemetry * additional wal metrics * Use correct metrics naming
This commit is contained in:
parent
472c0c83fa
commit
4bd42b4e3a
1 changed files with 28 additions and 0 deletions
|
|
@ -256,6 +256,14 @@ Thes operations take a request and response with an associated lease and registe
|
|||
|
||||
**[S]** Summary (Milliseconds): Time taken for register authentication operations which create lease entries without lease ID
|
||||
|
||||
### vault.merkle_flushdirty
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to flush any dirty pages to cold storage
|
||||
|
||||
### vault.merkle_savecheckpoint
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to save the checkpoint
|
||||
|
||||
### vault.policy.get_policy
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to get a policy
|
||||
|
|
@ -296,6 +304,26 @@ Thes operations take a request and response with an associated lease and registe
|
|||
|
||||
**[S]** Summary (Milliseconds): Time taken to store an updated token entry without writing to the secondary index
|
||||
|
||||
### vault.wal_deletewals
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to delete a Write Ahead Log (WAL)
|
||||
|
||||
### vault.wal_gc_deleted
|
||||
|
||||
**[C]** Counter (Number of WAL): Number of Write Ahead Logs (WAL) deleted during each garbage collection run
|
||||
|
||||
### vault.wal_gc_total
|
||||
|
||||
**[C]** Counter (Number of WAL): Total Number of Write Ahead Logs (WAL) on disk
|
||||
|
||||
### vault.wal_persistwals
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to persist a Write Ahead Log (WAL)
|
||||
|
||||
### vault.wal_flushready
|
||||
|
||||
**[S]** Summary (Milliseconds): Time taken to flush a ready Write Ahead Log (WAL) to storage
|
||||
|
||||
## Auth Methods Metrics
|
||||
|
||||
These metrics relate to supported authentication methods.
|
||||
|
|
|
|||
Loading…
Reference in a new issue