Re: .NET. Is where a way to get JVM metrics from dotnet?

2018-09-13 Thread Pavel Tupitsyn
Hi, Yes, regular java tools like jvisualvm work just fine with JVM started by Ignite.NET. On Thu, Sep 13, 2018 at 7:29 PM Ilya Kasnacheev wrote: > Hello! > > My recommendation is to take thread dump using jstack and heap dump using > jmap. > > I hope that they will happily operate on JVM-contai

Re: .NET. Is where a way to get JVM metrics from dotnet?

2018-09-13 Thread Ilya Kasnacheev
Hello! My recommendation is to take thread dump using jstack and heap dump using jmap. I hope that they will happily operate on JVM-containing process. Regards, -- Ilya Kasnacheev чт, 13 сент. 2018 г. в 19:25, Alew : > Hi! > > I get OOMEs and my current hypothesis is that there are too many

.NET. Is where a way to get JVM metrics from dotnet?

2018-09-13 Thread Alew
Hi! I get OOMEs and my current hypothesis is that there are too many threads in the Java part in the _thread_in_native state. To make a repro I need to get JVM metrics from dotnet. So I want to know how to do it. Thanks.