Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.61 KB

framework-jmx.md

File metadata and controls

40 lines (30 loc) · 1.61 KB

JMX Framework

The JMX Framework contributes Java JMX configuration to the application at runtime. Note: This framework is only useful in Diego-based containers with SSH access enabled.

Detection Criterion enabled set in the config/jmx.yml file
Tags jmx=<port>
Tags are printed to standard output by the buildpack detect script

Configuration

For general information on configuring the buildpack, including how to specify configuration values through environment variables, refer to Configuration and Extension.

The framework can be configured by creating or modifying the config/jmx.yml file in the buildpack fork.

Name Description
enabled Whether to enable JMX
port The port that the debug agent will listen on. Defaults to 5000.

Creating SSH Tunnel

After starting an application with JMX enabled, an SSH tunnel must be created to the container. To create that SSH container, execute the following command:

$ cf ssh -N -T -L <LOCAL_PORT>:localhost:<REMOTE_PORT> <APPLICATION_NAME>

The REMOTE_PORT should match the port configuration for the application (5000 by default). The LOCAL_PORT must match the REMOTE_PORT.

Once the SSH tunnel has been created, your JConsole should connect to localhost:<LOCAL_PORT> for JMX access.

JConsole Configuration