Skip to content

Commit bd42d67

Browse files
Update the removed metrics table
1 parent 11d6b89 commit bd42d67

File tree

1 file changed

+44
-73
lines changed

1 file changed

+44
-73
lines changed

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

Lines changed: 44 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -232,79 +232,50 @@ The `server.logs.config` and the `server.logs.user.config` are changed to depend
232232
.See removed metrics in Neo4j 2025.01.
233233
[%collapsible]
234234
====
235-
[options="header", cols="1,1"]
236-
|===
237-
|Name|Description
238-
239-
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]**
240-
241-
|<prefix>.causal_clustering.core.append_index
242-
|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)
243-
|<prefix>.causal_clustering.core.commit_index
244-
|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)
245-
|<prefix>.causal_clustering.core.applied_index
246-
|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)
247-
|<prefix>.causal_clustering.core.term
248-
|The Raft Term of this server. It increases monotonically if you do not unbind the cluster state. (gauge)
249-
|<prefix>.causal_clustering.core.tx_retries
250-
|Transaction retries. (counter)
251-
|<prefix>.causal_clustering.core.is_leader
252-
|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)
253-
|<prefix>.causal_clustering.core.in_flight_cache.total_bytes
254-
|In-flight cache total bytes. (gauge)
255-
|<prefix>.causal_clustering.core.in_flight_cache.max_bytes
256-
|In-flight cache max bytes. (gauge)
257-
|<prefix>.causal_clustering.core.in_flight_cache.element_count
258-
|In-flight cache element count. (gauge)
259-
|<prefix>.causal_clustering.core.in_flight_cache.max_elements
260-
|In-flight cache maximum elements. (gauge)
261-
|<prefix>.causal_clustering.core.in_flight_cache.hits
262-
|In-flight cache hits. (counter)
263-
|<prefix>.causal_clustering.core.in_flight_cache.misses
264-
|In-flight cache misses. (counter)
265-
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.lag
266-
|Raft Log Entry Prefetch Lag. (gauge)
267-
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.bytes
268-
|Raft Log Entry Prefetch total bytes. (gauge)
269-
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.size
270-
|Raft Log Entry Prefetch buffer size. (gauge)
271-
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.async_put
272-
|Raft Log Entry Prefetch buffer async puts. (gauge)
273-
|<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.sync_put
274-
|Raft Log Entry Prefetch buffer sync puts. (gauge)
275-
|<prefix>.causal_clustering.core.message_processing_delay
276-
|Delay between Raft message receive and process. (gauge)
277-
|<prefix>.causal_clustering.core.message_processing_timer
278-
|Timer for Raft message processing. (counter, histogram)
279-
|<prefix>.causal_clustering.core.replication_new
280-
|The total number of Raft replication requests. It increases with write transactions (possibly internal) activity. (counter)
281-
|<prefix>.causal_clustering.core.replication_attempt
282-
|The total number of Raft replication requests attempts. It is bigger or equal than the replication requests. (counter)
283-
|<prefix>.causal_clustering.core.replication_fail
284-
|The total number of Raft replication attempts that have failed. (counter)
285-
|<prefix>.causal_clustering.core.replication_maybe
286-
|Raft Replication maybe count. (counter)
287-
|<prefix>.causal_clustering.core.replication_success
288-
|The total number of Raft replication requests that have succeeded. (counter)
289-
|<prefix>.causal_clustering.core.last_leader_message
290-
|The time elapsed since the last message from a leader in milliseconds. Should reset periodically. (gauge)
291-
292-
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]**
293-
294-
|<prefix>.causal_clustering.read_replica.pull_updates
295-
|The total number of pull requests made by this instance. (counter)
296-
|<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_requested
297-
|The highest transaction id requested in a pull update by this instance. (counter)
298-
|<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_received
299-
|The highest transaction id that has been pulled in the last pull updates by this instance. (counter)
300-
301-
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.adoc#discovery-service-metrics[Discovery metrics]**
302-
|<prefix>.cluster.discovery.replicated_data|Size of replicated data structures. (gauge)
303-
|<prefix>.cluster.discovery.cluster.members|Discovery cluster member size. (gauge)
304-
|<prefix>.cluster.discovery.cluster.unreachable|Discovery cluster unreachable size. (gauge)
305-
|<prefix>.cluster.discovery.cluster.converged|Discovery cluster convergence. (gauge)
306-
|<prefix>.cluster.discovery.restart.success_count|Discovery restart count. (gauge)
307-
|<prefix>.cluster.discovery.restart.failed_count|Discovery restart failed count. (gauge)
235+
[options="header", cols="1,3m"]
236+
|===
237+
|Metrics class|Metrics name
238+
239+
|**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]**
240+
|<prefix>.causal_clustering.core.append_index +
241+
<prefix>.causal_clustering.core.commit_index +
242+
<prefix>.causal_clustering.core.applied_index +
243+
<prefix>.causal_clustering.core.term +
244+
<prefix>.causal_clustering.core.tx_retries +
245+
<prefix>.causal_clustering.core.is_leader +
246+
<prefix>.causal_clustering.core.in_flight_cache.total_bytes +
247+
<prefix>.causal_clustering.core.in_flight_cache.max_bytes +
248+
<prefix>.causal_clustering.core.in_flight_cache.element_count +
249+
<prefix>.causal_clustering.core.in_flight_cache.max_elements +
250+
<prefix>.causal_clustering.core.in_flight_cache.hits +
251+
<prefix>.causal_clustering.core.in_flight_cache.misses +
252+
<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.lag +
253+
<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.bytes +
254+
<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.size +
255+
<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.async_put +
256+
<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.sync_put +
257+
<prefix>.causal_clustering.core.message_processing_delay +
258+
<prefix>.causal_clustering.core.message_processing_timer +
259+
<prefix>.causal_clustering.core.replication_new +
260+
<prefix>.causal_clustering.core.replication_attempt +
261+
<prefix>.causal_clustering.core.replication_fail +
262+
<prefix>.causal_clustering.core.replication_maybe +
263+
<prefix>.causal_clustering.core.replication_success +
264+
<prefix>.causal_clustering.core.last_leader_message
265+
266+
|**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]**
267+
268+
|<prefix>.causal_clustering.read_replica.pull_updates +
269+
<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_requested +
270+
<prefix>.causal_clustering.read_replica.pull_update_highest_tx_id_received
271+
272+
|**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.adoc#discovery-service-metrics[Discovery metrics]**
273+
|<prefix>.cluster.discovery.replicated_data +
274+
<prefix>.cluster.discovery.cluster.members +
275+
<prefix>.cluster.discovery.cluster.unreachable +
276+
<prefix>.cluster.discovery.cluster.converged +
277+
<prefix>.cluster.discovery.restart.success_count +
278+
<prefix>.cluster.discovery.restart.failed_count
308279
|===
309280
====
310281

0 commit comments

Comments
 (0)