node-jmx
node-jmx copied to clipboard
Node.js library to connect to Java applications through JMX.
* Update NPM modules * All APIs now return Promise, except the API inherited from EventEmitter * Add new API "queryNamesWithObjectName" w.r.t. "queryNames" in "MBeanServerConnection", with only "ObjectName" is support.
When doing a vanilla install of jmx I get `found 4 high severity vulnerabilities` from npm. It's from the `java` dependency. I've been using the 0.11 npm-java version here for...
I am having problem with "npm install jmx". ``` ... ... In file included from ../../nan/nan.h:51:0, from ../src/utils.h:12, from ../src/utils.cpp:1: /pc-path/.node-gyp/10.13.0/include/node/node.h:176:50: note: declared here NODE_EXTERN v8::Local MakeCallback( ^ /pc-path/.node-gyp/10.13.0/include/node/node.h:91:42: note:...
I'm finding that if i try to retrieve an attribute that doesn't exist, nothing happens. My callback just doesn't fire. Is this by design? It seems like it would make...
Hi, I need to retrieve and attribute value in schedule mode, but I notice that my callback is call many times as many trigger event is done. A possibile WA...
The counterpart for MBeanServerConnection.getMBeanInfo(name) doesn't seem to be currently available. Could you provide the method as it is useful in getting the attributes, operations etc of a bean?
## Code: ```js "use strict"; var jmx = require("jmx"); var client = jmx.createClient({ host: "localhost", port: 9011 }); client.connect(); client.on("connect", function () { client.getAttribute("java.lang:type=Memory", "HeapMemoryUsage", function (data) { var used...
I don't know if it's outside of the planned scope for this project, but it would be really cool to be able to expose a Node server via a JMX...
Thank you for providing such a great module. While I was trying to use your module for Weblogic Server MBeans with JMX using t3 protocol, I fount that it must...
We are not able to pass null as param to invoke. A small fix is needed [in javaJmx.js](https://github.com/zuazo/node-jmx/blob/0.5.0/lib/javaJmx.js#L109-L113): ``` javascript function jsParams2JavaParams(params, signature) { var javaParams = []; signature.forEach(function(className) {...