MVN

com.srotya.sys : sysinfo

Maven & Gradle

Apr 06, 2016
0 stars

sysinfo · Sysinfo is a linux daemon written in Java that exposes OS info and metrics via a REST API. It also supports push metrics where the daemon will post the metrics to an endpoint of your choice. Currently supporting: - REST - Syslog The daemon works by monitoring linux /proc. More information can be found here: https://www.kernel.org/doc/Documentation/filesystems/proc.txt

<dependency>
    <groupId>com.srotya.sys</groupId>
    <artifactId>sysinfo</artifactId>
    <version>0.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.srotya.sys : sysinfo to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.3

All Versions

Choose a version of com.srotya.sys : sysinfo to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
sysinfo-0.0.3

How to add a dependency to Maven

Add the following com.srotya.sys : sysinfo maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.srotya.sys</groupId>
    <artifactId>sysinfo</artifactId>
    <version>0.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.srotya.sys : sysinfo gradle dependency to your build.gradle file:

implementation 'com.srotya.sys:sysinfo:0.0.3'

Gradle Kotlin DSL: Add the following com.srotya.sys : sysinfo gradle kotlin dependency to your build.gradle.kts file:

implementation("com.srotya.sys:sysinfo:0.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.srotya.sys : sysinfo sbt scala dependency to your build.sbt file:

libraryDependencies += "com.srotya.sys" % "sysinfo" % "0.0.3"

Advertisement