pthulasiram / jmxetric

Automatically exported from code.google.com/p/jmxetric
MIT License
0 stars 0 forks source link

incorrect javaagent option sample in README #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
in the README, at the installation section:

    java
-javaagent:<path>/jmxetric.jar:host="",port="",config="",process=""
usual.java.main.class

but the separator between the javaagent jarpath and it's options in not ":"
but "=" as stated here:
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/instrument/package-summary.htm
l#package_description

So the correct line in README would be:
    java
-javaagent:<path>/jmxetric.jar=host="",port="",config="",process=""
usual.java.main.class

Original issue reported on code.google.com by gipszlya...@gmail.com on 12 May 2009 at 2:07

GoogleCodeExporter commented 8 years ago

Original comment by jasper...@gmail.com on 12 May 2009 at 6:02