I am trying to create Memory Dump and Thread Dump without using JDK tools like JMAP or JSTACK.
I am not a java programmer, so not aware much about JDK.
"PROJECT A" is developed using JAVA so JRE is a minimal requirement to RUN it. In JRE, tools like JMAP or JSTACK may not be present. I read somewhere that latest JRE has such tools included, but not sure. Even if it is true then also this may not be applicable to "PROJECT A", some old clients are still using old runtimes.
"PROJECT B" is created using C#, which initiate to create Memory & Thread Dumps using JMAP and JSTACK. It find these command in relevant folder and run them to collected the dump files.
Question: Is there any other way to create this dumps without using JMAP or JSTACK.
I have gone through many discussion threads on STACKOVERFLOW but couldn't find related solution.