This adapter allows to reuse the default HTML GUI even if there is no REST API available (non-web environments).
The adapter:
- Either connects to a JMX server (JMX support must be enabled) or loads data from an export file
- Starts an embedded Undertow instance
- Exposes the default HTML client but using the data from step 1
mvn clean package
The shaded artifact is available in Maven Central: http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22weld-probe-client-adapter%22
java -jar weld-probe-client-adapter-1.0.0.Final-shaded.jar
The first argument represents the path to an export file:
java -jar weld-probe-client-adapter-1.0.0.Final-shaded.jar /home/edgar/weld-probe-export.zip
Don't forget to allow to connect to a remote JVM process. E.g. use the following system properties: -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
.
For WildFly (standalone mode) a different jmxServiceUrl must be specified and jboss-client.jar must be also on the class path, e.g.:
java -Dorg.jboss.weld.probe.jmxServiceUrl="service:jmx:http-remoting-jmx://127.0.0.1:9990" -cp '/opt/jboss/wildfly/bin/client/jboss-client.jar:weld-probe-client-adapter-1.0.0.Final.jar' org.jboss.weld.probe.ProbeJmx
System property | Default value | Description |
---|---|---|
org.jboss.weld.probe.jmxServiceUrl |
service:jmx:rmi:///jndi/rmi://127.0.0.1:9999/jmxrmi | JMX server URL |
org.jboss.weld.probe.undertowHost |
127.0.0.1 | Undertow host - used to expose the HTML client |
org.jboss.weld.probe.undertowPort |
8181 | Undertow port - used to expose the HTML client |