|
110 | 110 | .See all removed metrics in Neo4j 2025.01 |
111 | 111 | [%collapsible] |
112 | 112 | ==== |
113 | | -[options="header"] |
| 113 | +[options="header", cols="1,1"] |
114 | 114 | |=== |
115 | | -|Name |
| 115 | +|Name|Description |
116 | 116 |
|
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]** |
118 | 118 |
|
119 | 119 | |<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) |
121 | 121 | |<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) |
123 | 123 | |<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) |
125 | 125 | |<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) |
127 | 127 | |<prefix>.causal_clustering.core.tx_retries |
128 | | -
|
| 128 | +|Transaction retries. (counter) |
129 | 129 | |<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) |
131 | 131 | |<prefix>.causal_clustering.core.in_flight_cache.total_bytes |
132 | | -
|
| 132 | +|In-flight cache total bytes. (gauge) |
133 | 133 | |<prefix>.causal_clustering.core.in_flight_cache.max_bytes |
134 | | -
|
| 134 | +|In-flight cache max bytes. (gauge) |
135 | 135 | |<prefix>.causal_clustering.core.in_flight_cache.element_count |
136 | | -
|
| 136 | +|In-flight cache element count. (gauge) |
137 | 137 | |<prefix>.causal_clustering.core.in_flight_cache.max_elements |
138 | | -
|
| 138 | +|In-flight cache maximum elements. (gauge) |
139 | 139 | |<prefix>.causal_clustering.core.in_flight_cache.hits |
140 | | -
|
| 140 | +|In-flight cache hits. (counter) |
141 | 141 | |<prefix>.causal_clustering.core.in_flight_cache.misses |
142 | | -
|
| 142 | +|In-flight cache misses. (counter) |
143 | 143 | |<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.lag |
144 | | -
|
| 144 | +|Raft Log Entry Prefetch Lag. (gauge) |
145 | 145 | |<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.bytes |
146 | | -
|
| 146 | +|Raft Log Entry Prefetch total bytes. (gauge) |
147 | 147 | |<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.size |
148 | | -
|
| 148 | +|Raft Log Entry Prefetch buffer size. (gauge) |
149 | 149 | |<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.async_put |
150 | | -
|
| 150 | +|Raft Log Entry Prefetch buffer async puts. (gauge) |
151 | 151 | |<prefix>.causal_clustering.core.raft_log_entry_prefetch_buffer.sync_put |
152 | | -
|
| 152 | +|Raft Log Entry Prefetch buffer sync puts. (gauge) |
153 | 153 | |<prefix>.causal_clustering.core.message_processing_delay |
154 | | -
|
| 154 | +|Delay between Raft message receive and process. (gauge) |
155 | 155 | |<prefix>.causal_clustering.core.message_processing_timer |
156 | | -
|
| 156 | +|Timer for Raft message processing. (counter, histogram) |
157 | 157 | |<prefix>.causal_clustering.core.replication_new |
158 | | -
|
| 158 | +|The total number of Raft replication requests. It increases with write transactions (possibly internal) activity. (counter) |
159 | 159 | |<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) |
161 | 161 | |<prefix>.causal_clustering.core.replication_fail |
162 | | -
|
| 162 | +|The total number of Raft replication attempts that have failed. (counter) |
163 | 163 | |<prefix>.causal_clustering.core.replication_maybe |
164 | | -
|
| 164 | +|Raft Replication maybe count. (counter) |
165 | 165 | |<prefix>.causal_clustering.core.replication_success |
166 | | -
|
| 166 | +|The total number of Raft replication requests that have succeeded. (counter) |
167 | 167 | |<prefix>.causal_clustering.core.last_leader_message |
| 168 | +|The time elapsed since the last message from a leader in milliseconds. Should reset periodically. (gauge) |
168 | 169 |
|
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]** |
170 | 171 |
|
171 | 172 | |<prefix>.causal_clustering.read_replica.pull_updates |
172 | | -
|
| 173 | +|The total number of pull requests made by this instance. (counter) |
173 | 174 | |<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) |
175 | 176 | |<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) |
177 | 186 | |=== |
178 | 187 | ==== |
179 | 188 |
|
|
0 commit comments