You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/monitoring/metrics/reference.adoc
-120Lines changed: 0 additions & 120 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -452,99 +452,6 @@ label:deprecated[Deprecated in 5.15]
452
452
|<prefix>.cluster.discovery.memberset.unreachable|Number of unreachable cluster members. (gauge)
453
453
|===
454
454
455
-
[[raft-core-metrics]]
456
-
=== Raft core metrics
457
-
458
-
label:deprecated[Deprecated in 5.0]
459
-
460
-
.Raft core metrics
461
-
[options="header",cols="<3m,<4"]
462
-
|===
463
-
|Name
464
-
|Description
465
-
466
-
|<prefix>.causal_clustering.core.append_index
467
-
|The append index of the Raft log. Each index represents a write transaction (possibly internal) proposed for commitment. The values mostly increase, but sometimes they can decrease as a consequence of leader changes. The append index should always be bigger than or equal to the commit index. (gauge)
468
-
469
-
|<prefix>.causal_clustering.core.commit_index
470
-
|The commit index of the Raft log. Represents the commitment of previously appended entries. Its value increases monotonically if you do not unbind the cluster state. The commit index should always be less than or equal to the append index and bigger than or equal to the applied index. (gauge)
471
-
472
-
|<prefix>.causal_clustering.core.applied_index
473
-
|The applied index of the Raft log. Represents the application of the committed Raft log entries to the database and internal state. The applied index should always be less than or equal to the commit index. The difference between this and the commit index can be used to monitor how up-to-date the follower database is. (gauge)
474
-
475
-
|<prefix>.causal_clustering.core.term
476
-
|The Raft Term of this server. It increases monotonically if you do not unbind the cluster state. (gauge)
477
-
478
-
|<prefix>.causal_clustering.core.tx_retries
479
-
|Transaction retries. (counter)
480
-
481
-
|<prefix>.causal_clustering.core.is_leader
482
-
|Is this server the leader? Track this for each Core cluster member. It will report 0 if it is not the leader and 1 if it is the leader. The sum of all of these should always be 1. However, there will be transient periods in which the sum can be more than 1 because more than one member thinks it is the leader. Action may be needed if the metric shows 0 for more than 30 seconds. (gauge)
0 commit comments