Skip to content

Commit b02f617

Browse files
Add removed Discovery service v1 metrics and edit the table
1 parent 8f218b8 commit b02f617

File tree

1 file changed

+40
-31
lines changed

1 file changed

+40
-31
lines changed

modules/ROOT/pages/changes-deprecations-removals.adoc

Lines changed: 40 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -110,70 +110,79 @@
110110
.See all removed metrics in Neo4j 2025.01
111111
[%collapsible]
112112
====
113-
[options="header"]
113+
[options="header", cols="1,1"]
114114
|===
115-
|Name
115+
|Name|Description
116116
117-
a|**link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#raft-core-metrics[Raft core metrics] - replaced accordingly by the link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#raft-metrics[Raft metrics]**
117+
2+|**link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#raft-core-metrics[Raft core metrics] - replaced accordingly by the link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#raft-metrics[Raft metrics]**
118118
119119
|<prefix>.causal_clustering.core.append_index
120-
120+
|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)
121121
|<prefix>.causal_clustering.core.commit_index
122-
122+
|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)
123123
|<prefix>.causal_clustering.core.applied_index
124-
124+
|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)
125125
|<prefix>.causal_clustering.core.term
126-
126+
|The Raft Term of this server. It increases monotonically if you do not unbind the cluster state. (gauge)
127127
|<prefix>.causal_clustering.core.tx_retries
128-
128+
|Transaction retries. (counter)
129129
|<prefix>.causal_clustering.core.is_leader
130-
130+
|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)
131131
|<prefix>.causal_clustering.core.in_flight_cache.total_bytes
132-
132+
|In-flight cache total bytes. (gauge)
133133
|<prefix>.causal_clustering.core.in_flight_cache.max_bytes
134-
134+
|In-flight cache max bytes. (gauge)
135135
|<prefix>.causal_clustering.core.in_flight_cache.element_count
136-
136+
|In-flight cache element count. (gauge)
137137
|<prefix>.causal_clustering.core.in_flight_cache.max_elements
138-
138+
|In-flight cache maximum elements. (gauge)
139139
|<prefix>.causal_clustering.core.in_flight_cache.hits
140-
140+
|In-flight cache hits. (counter)
141141
|<prefix>.causal_clustering.core.in_flight_cache.misses
142-
142+
|In-flight cache misses. (counter)
143143
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.lag
144-
144+
|Raft Log Entry Prefetch Lag. (gauge)
145145
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.bytes
146-
146+
|Raft Log Entry Prefetch total bytes. (gauge)
147147
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.size
148-
148+
|Raft Log Entry Prefetch buffer size. (gauge)
149149
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.async_put
150-
150+
|Raft Log Entry Prefetch buffer async puts. (gauge)
151151
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.sync_put
152-
152+
|Raft Log Entry Prefetch buffer sync puts. (gauge)
153153
|<prefix>.causal_clustering.core.message_processing_delay
154-
154+
|Delay between Raft message receive and process. (gauge)
155155
|<prefix>.causal_clustering.core.message_processing_timer
156-
156+
|Timer for Raft message processing. (counter, histogram)
157157
|<prefix>.causal_clustering.core.replication_new
158-
158+
|The total number of Raft replication requests. It increases with write transactions (possibly internal) activity. (counter)
159159
|<prefix>.causal_clustering.core.replication_attempt
160-
160+
|The total number of Raft replication requests attempts. It is bigger or equal than the replication requests. (counter)
161161
|<prefix>.causal_clustering.core.replication_fail
162-
162+
|The total number of Raft replication attempts that have failed. (counter)
163163
|<prefix>.causal_clustering.core.replication_maybe
164-
164+
|Raft Replication maybe count. (counter)
165165
|<prefix>.causal_clustering.core.replication_success
166-
166+
|The total number of Raft replication requests that have succeeded. (counter)
167167
|<prefix>.causal_clustering.core.last_leader_message
168+
|The time elapsed since the last message from a leader in milliseconds. Should reset periodically. (gauge)
168169
169-
a|**link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#read-replica-metrics[Read Replica metrics] - replaced accordingly by the link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#store-copy-metrics[Store copy metrics]**
170+
2+|**link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#read-replica-metrics[Read Replica metrics] - replaced accordingly by the link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#store-copy-metrics[Store copy metrics]**
170171
171172
|<prefix>.causal_clustering.read_replica.pull_updates
172-
173+
|The total number of pull requests made by this instance. (counter)
173174
|<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_requested
174-
175+
|The highest transaction id requested in a pull update by this instance. (counter)
175176
|<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_received
176-
177+
|The highest transaction id that has been pulled in the last pull updates by this instance. (counter)
178+
179+
2+|**link:{neo4j-docs-base-uri}/operations-manual/5/monitoring/metrics/reference/#discovery-service-V1[Discovery metrics v1] - removed without replacement. See xref:monitoring/metrics/reference/#discovery-service-metrics[Discovery metrics]**
180+
|<prefix>.cluster.discovery.replicated_data|Size of replicated data structures. (gauge)
181+
|<prefix>.cluster.discovery.cluster.members|Discovery cluster member size. (gauge)
182+
|<prefix>.cluster.discovery.cluster.unreachable|Discovery cluster unreachable size. (gauge)
183+
|<prefix>.cluster.discovery.cluster.converged|Discovery cluster convergence. (gauge)
184+
|<prefix>.cluster.discovery.restart.success_count|Discovery restart count. (gauge)
185+
|<prefix>.cluster.discovery.restart.failed_count|Discovery restart failed count. (gauge)
177186
|===
178187
====
179188

0 commit comments

Comments
 (0)