Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions modules/ROOT/pages/monitoring/logging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,7 @@ If the type of the log entry is `query`, these additional fields are available:

| id
| The query ID.
The ID is incremental, starting from 1 and resetting upon every Neo4j restart.
Included when xref:configuration/configuration-settings.adoc#config_db.logs.query.enabled[`db.logs.query.enabled`] is `VERBOSE`.

| elapsedTimeMs
Expand Down Expand Up @@ -1261,6 +1262,16 @@ See <<gql-error-information, GQL error information>> for details on the contents
| The query plan.
Included when xref:configuration/configuration-settings.adoc#config_db.logs.query.plan_description_enabled[`db.logs.query.plan_description_enabled`] is `true`.

| executionPlanCacheKeyHash
| The 32-bit hash of the cache key used to cache the execution plan.
It is a fixed-length 8-character string of a hex-encoded integer value.
Enabled by default only in the JSON format.
If multiple query executions use the same cached execution plan, their hashes should match.
For `event=start`, the value is `00000000`.

| executableQueryCacheHit
| Whether the query string matched a cached execution plan.

|===

If the type of the log entry is `transaction`, the following additional fields are available:
Expand All @@ -1286,6 +1297,7 @@ Either same as `authenticatedUser` or an impersonated user.

| transactionId
| ID of the transaction.

|===

[[gql-error-information]]
Expand Down
Loading