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.