Jvmtop is a lightweight console application to monitor all accessible, running

jvms on a machine. In a top-like manner, it displays JVM internal metrics
(e.g. memory information) of running java processes.

It's tested with different releases of Oracle JDK, IBM JDK and OpenJDK on
Linux, Solaris and Windows hosts.  Jvmtop requires a JDK - a JRE will not
suffice.

WWW: http://code.google.com/p/jvmtop/
This commit is contained in:
Jason Helfman 2013-06-19 21:42:55 +00:00
parent 2ab5265380
commit d44650cb1d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=321335
5 changed files with 43 additions and 0 deletions

View file

@ -423,6 +423,7 @@
SUBDIR += jps
SUBDIR += jtop
SUBDIR += jtopen
SUBDIR += jvmtop
SUBDIR += jx
SUBDIR += k3b
SUBDIR += k3b-kde4

28
sysutils/jvmtop/Makefile Normal file
View file

@ -0,0 +1,28 @@
# Created by: Jason Helfman <jgh@FreeBSD.org>
# $FreeBSD$
PORTNAME= jvmtop
PORTVERSION= 0.6.0
CATEGORIES= sysutils java
MASTER_SITES= GOOGLE_CODE
MAINTAINER= jgh@FreeBSD.org
COMMENT= Lightweight console application to monitor running jvms
LICENSE= GPLv3
USE_JAVA= yes
JAVA_VERSION= 1.6+
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \
bin/${PORTNAME}
SUB_LIST= JAVA_HOME=${JAVA_HOME}
SUB_FILES= ${PORTNAME}.sh
NO_BUILD= yes
do-install:
@${MKDIR} ${JAVAJARDIR}
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.jar ${JAVAJARDIR}
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>

2
sysutils/jvmtop/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (jvmtop-0.6.0.tar.gz) = 0b849fe86c225aa1198376fa55872a66bc5008bf72e3672d1c7ee19aa30b9588
SIZE (jvmtop-0.6.0.tar.gz) = 41570

View file

@ -0,0 +1,3 @@
#!/bin/sh
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -cp "%%JAVAJARDIR%%/jvmtop.jar:%%JAVA_HOME%%/lib/tools.jar" com.jvmtop.JvmTop $1

View file

@ -0,0 +1,9 @@
Jvmtop is a lightweight console application to monitor all accessible, running
jvms on a machine. In a top-like manner, it displays JVM internal metrics
(e.g. memory information) of running java processes.
It's tested with different releases of Oracle JDK, IBM JDK and OpenJDK on
Linux, Solaris and Windows hosts. Jvmtop requires a JDK - a JRE will not
suffice.
WWW: http://code.google.com/p/jvmtop/