File tree Expand file tree Collapse file tree 4 files changed +26
-0
lines changed
content/vault/v1.20.x/content
docs/internals/telemetry/metrics
partials/telemetry-metrics/vault/raft/thread Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -474,6 +474,10 @@ alphabetic order by name.
474
474
475
475
@include 'telemetry-metrics/vault/raft-storage/transaction.mdx'
476
476
477
+ @include 'telemetry-metrics/vault/raft/thread/fsm/saturation.mdx'
478
+
479
+ @include 'telemetry-metrics/vault/raft/thread/main/saturation.mdx'
480
+
477
481
@include 'telemetry-metrics/vault/raft-wal/head-truncations.mdx'
478
482
479
483
@include 'telemetry-metrics/vault/raft-wal/tail-truncations.mdx'
Original file line number Diff line number Diff line change @@ -168,6 +168,12 @@ Vault [integrated storage](/vault/docs/configuration/storage/raft).
168
168
169
169
@include 'telemetry-metrics/vault/raft-storage/transaction.mdx'
170
170
171
+ ## Thread saturation metrics
172
+
173
+ @include 'telemetry-metrics/vault/raft/thread/main/saturation.mdx'
174
+
175
+ @include 'telemetry-metrics/vault/raft/thread/fsm/saturation.mdx'
176
+
171
177
## Write-ahead logging (WAL) metrics
172
178
173
179
@include 'telemetry-metrics/vault/raft-wal/head-truncations.mdx'
Original file line number Diff line number Diff line change
1
+ ### vault.raft.thread.fsm.saturation ((#vault-raft-thread-fsm-saturation))
2
+
3
+ Metric type | Value | Description
4
+ ----------- | ----------- | -----------
5
+ gauge | percentage | Approximate proportion of time the raft FSM goroutine could not accept new work
6
+
7
+ High saturation of the raft goroutines can increase latency in the rest of the
8
+ system and cause cluster instability.
Original file line number Diff line number Diff line change
1
+ ### vault.raft.thread.main.saturation ((#vault-raft-thread-main-saturation))
2
+
3
+ Metric type | Value | Description
4
+ ----------- | ----------- | -----------
5
+ gauge | percentage | Approximate proportion of time the main raft goroutine could not accept new work
6
+
7
+ High saturation of the raft goroutines can increase latency in the rest of the
8
+ system and cause cluster instability.
You can’t perform that action at this time.
0 commit comments