A JMX client library for Rust.
This library allows querying Java JMX attributes from a rust project.
The jmx-rust
crate is based off of the j4rs
crate.
The j4rs
crate needs JAVA_HOME
variable to be set to the install path of the JDK for builds
and the LD_LIBRARY_PATH
to the directory containing libjvm.so
.
```bash
export JAVAHOME=/usr/lib/jvm/ export LDLIBRARY_PATH=/usr/lib/jvm/lib/server/ ```
Tests work but starting a test JMX server located under tests/jmxserver
.
This server is then used by the tests to check the library.
For this to work the test server must be compiled and the correct java
command
must be available in the $PATH
:
```bash cd tests/jmxserver javac TestServer.java cd ../..
export PATH="/path/to/java/bin:$PATH" cargo test ```
Creating a client: ```rust extern crate jmx;
static JMX_PORT: i32 = 1234;
fn main() { // Create a connection to the remote JMX server. let url = MBeanAddress::serviceurl(format!( "service:jmx:rmi://localhost:{}/jndi/rmi://localhost:{}/jmxrmi", JMXPORT, JMX_PORT )); let client = MBeanClient::connect(url) .expect("Failed to connect to the JMX server");
// Fetch some attribute from the server.
let threads: i32 = client.get_attribute("FOO:name=ServerBean", "ThreadCount").unwrap();
} ```