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
@@ -184,15 +184,24 @@ By default, database metrics include:
184
184
|===
185
185
186
186
[[db-data-metrics]]
187
-
.Database data metrics
187
+
.Database data metrics label:deprecated[Deprecated in 5.15]
188
188
189
189
[options="header",cols="<3m,<4"]
190
190
|===
191
-
|Name |Description
192
-
|<prefix>.ids_in_use.relationship_type|label:deprecated[Deprecated in 5.15]The total number of internally generated IDs for the different relationship types stored in the database. These IDs do not reflect changes in the actual data. Informational, not an indication of any issue. (gauge)
193
-
|<prefix>.ids_in_use.property|label:deprecated[Deprecated in 5.15]The total number of internally generated IDs for the different property names stored in the database. These IDs do not reflect changes in the actual data. Informational, not an indication of any issue. (gauge)
194
-
|<prefix>.ids_in_use.relationship|label:deprecated[Deprecated in 5.15]The total number of internally generated reusable IDs for the relationships stored in the database. These IDs do not reflect changes in the actual data. If you want to have a rough metric of how big your graph is, use `<prefix>.neo4j.count.relationship` instead. (gauge)
195
-
|<prefix>.ids_in_use.node|label:deprecated[Deprecated in 5.15]The total number of internally generated reusable IDs for the nodes stored in the database. These IDs do not reflect changes in the actual data. If you want to have a rough metric of how big your graph is, use `<prefix>.neo4j.count.node` instead. (gauge)
191
+
|Name
192
+
|Description
193
+
194
+
|<prefix>.ids_in_use.relationship_type
195
+
|The total number of internally generated IDs for the different relationship types stored in the database. These IDs do not reflect changes in the actual data. Informational, not an indication of any issue. (gauge)
196
+
197
+
|<prefix>.ids_in_use.property
198
+
|The total number of internally generated IDs for the different property names stored in the database. These IDs do not reflect changes in the actual data. Informational, not an indication of any issue. (gauge)
199
+
200
+
|<prefix>.ids_in_use.relationship
201
+
|The total number of internally generated reusable IDs for the relationships stored in the database. These IDs do not reflect changes in the actual data. If you want to have a rough metric of how big your graph is, use `<prefix>.neo4j.count.relationship` instead. (gauge)
202
+
203
+
|<prefix>.ids_in_use.node
204
+
|The total number of internally generated reusable IDs for the nodes stored in the database. These IDs do not reflect changes in the actual data. If you want to have a rough metric of how big your graph is, use `<prefix>.neo4j.count.node` instead. (gauge)
196
205
|===
197
206
198
207
[[global-neo4j-pools-metrics]]
@@ -259,17 +268,21 @@ By default, database metrics include:
259
268
|===
260
269
261
270
[[query-routing-metrics]]
262
-
.Query routing metrics
271
+
.Query routing metrics label:new[Introduced in 5.10]
263
272
264
273
[options="header",cols="<3m,<4"]
265
274
|===
266
-
|Name |Description
267
-
|<prefix>.dbms.routing.query.count.local|label:new[Introduced in 5.10]
268
-
The total number of queries executed locally. (counter)
269
-
|<prefix>.dbms.routing.query.count.remote_internal|label:new[Introduced in 5.10]
270
-
The total number of queries executed remotely to a member of the same cluster. (counter)
271
-
|<prefix>.dbms.routing.query.count.remote_external|label:new[Introduced in 5.10]
272
-
The total number of queries executed remotely to a member of a different cluster. (counter)
275
+
|Name
276
+
|Description
277
+
278
+
|<prefix>.dbms.routing.query.count.local
279
+
|The total number of queries executed locally. (counter)
.Raft core metrics label:deprecated[Deprecated in 5.0]
402
+
[options="header",cols="<3m,<4"]
403
+
|===
404
+
|Name
405
+
|Description
406
+
407
+
|<prefix>.causal_clustering.core.append_index
408
+
|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)
409
+
410
+
|<prefix>.causal_clustering.core.commit_index
411
+
|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)
412
+
413
+
|<prefix>.causal_clustering.core.applied_index
414
+
|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)
415
+
416
+
|<prefix>.causal_clustering.core.term
417
+
|The Raft Term of this server. It increases monotonically if you do not unbind the cluster state. (gauge)
418
+
419
+
|<prefix>.causal_clustering.core.tx_retries
420
+
|Transaction retries. (counter)
421
+
422
+
|<prefix>.causal_clustering.core.is_leader
423
+
|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