Dev93
Dev93

Reputation: 103

Java NativeMemoryTracking flag and utility commands Azul JDK

we have recently moved to Azul jdk instead of using Oracle. it seems there is a missing of documentation regarding profiling flags and their usage.

for example, if i want to track native memory in Oracle i just add this flag:

-XX:NativeMemoryTracking=[detail|summary]

and when i want to get the statistics i just use the jcmd as follows:

jcmd <pid> VM.native_memory

i am trying to perform the same with the Azul jdk unsuccessfully. there is a lack of documentation on their site: https://docs.azul.com/zing/ZingNMT.htm

they are just specifying the flags i need to add with no usage examples at all. is anybody ever used jcmd/jmap/jstat or any Oracle HotSpot utility commands with the Azul jdk? is it even exists or are there any alternatives? it's unclear from their site.

Upvotes: 0

Views: 463

Answers (1)

user3453226
user3453226

Reputation:

Azul Zulu is an OpenJDK build, just like Oracle Java, meaning they are exactly like OpenJDK. There is no difference in functionality between them, meaning what you can do with one you can do with others.

Upvotes: 0

Related Questions