Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.37 KB

README.md

File metadata and controls

58 lines (42 loc) · 1.37 KB

JavaSysMon2 - New Edition with new Features

I see people forking this project and adding new features , but nobody is combining them in one . Guess what ? I do it here so here we go , i am taking the features from all the following forks and combining them inside this repository.

NEW

  1. Fixed windows 32bit dll was incorrectly compiled as 64bit

TODO

  1. The CPU usage of a process for a period of time

  2. Kill linux process

  3. Returning free memory in Linux even with cached and buffer values

Using JitPack.io

https://jitpack.io/#goxr3plus/javasysmon2

Maven

<repositories>
  <repository>
    <id>jitpack.io</id> 
    <url>https://jitpack.io</url>
  </repository>
</repositories>
<dependency>
  <groupId>com.github.goxr3plus</groupId>
  <artifactId>javasysmon2</artifactId>
  <version>8.0.0</version>
</dependency>

Gradle

allprojects {
   repositories {
      ... 
      maven { url 'https://jitpack.io' }
   }
 }
dependencies {
   implementation 'com.github.goxr3plus:javasysmon2:8.0.0'
}