Andrejs Jermakovics
Andrejs Jermakovics
Agreed. In the meantime you might be able to tweak jvm-mon.js. All the colors are defined there
Released a new version which is a complete rewrite: https://github.com/ajermakovics/jvm-mon/releases
Hi, Thank you!:) Unfortunately at the moment there's no way to add remote connections. However, I', working on a new version which will not require a JDK on the host...
Hi! Not directly, but jvm-mon uses a library called [jvmtop](https://github.com/ajermakovics/jvmtop) to poll JVM stats: https://github.com/ajermakovics/jvm-mon/blob/master/src/main/kotlin/jvmmon/JvmStats.kt It should be possible to use jvmtop in another JVM app and log stats to...
It doesn't provide a java agent so to use it you would need to add code to your application to get stats and write to a file. There are some...
Hi, Thank you for the bug report! Which version of java are you using?
This might happen if you run as a different user: https://stackoverflow.com/q/9100149/1180621
Just made a new release: https://github.com/ajermakovics/jvm-mon/releases It's a complete re-write of jvm-mon so should not have this issue
Hi, It gets memory values from Java itself using [Runtime](https://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html#totalMemory()): https://github.com/ajermakovics/jvm-mon/blob/master/jvm-mon-go/src/main/java/jvmmon/core/JvmMon.java#L32 If you are running 0.3 then you could add some code to write values into a text file: https://github.com/ajermakovics/jvm-mon/blob/master/src/dist/jvm-mon.js#L142...
Ah, ok. It just polls memory usage every 1 second.