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
Copy file name to clipboardExpand all lines: docs/developer-guide/maintaining-an-installation.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,15 +86,15 @@ Use `explain analyze <SQL query>` to obtain the query plan and display it in htt
86
86
If the JVM was started with `-XX:NativeMemoryTracking=summary`, use this to get an overview (see [here](https://trustmeiamadeveloper.com/2016/03/18/where-is-my-memory-java/) for more details):
The `jmap` tool within the JDK can be used to create a heap dump of a running jvm.
161
+
The [`jmap`](https://docs.oracle.com/en/java/javase/21/docs/specs/man/jmap.html) tool within the JDK can be used to create a heap dump of a running JVM.
162
162
163
163
### Create heap dump
164
164
```shell
@@ -178,11 +178,11 @@ scp {HOST}:~/dump.hprof ~
178
178
You can then explore the heap dump with an IDE or other tool.
179
179
180
180
## Performing a thread dump (`jstack`)
181
-
The `jmap` tool within the JDK can be used to create a heap dump of a running jvm.
181
+
The [`jstack`](https://docs.oracle.com/en/java/javase/21/docs/specs/man/jstack.html) tool within the JDK can be used to create a thread dump of a running JVM.
0 commit comments