Releases: ojung/mbeanz
Releases · ojung/mbeanz
v1.1.2
Support reading attributes
Attributes are now included in the fuzzy finder.
Setting attributes is supported by the api, but not by the client to keep things simple.
v1.0.4
Client improvements
Small improvements to the usabillity of the client.
Use --help
or -h
to print usage information.
Use --debug
as second parameter to see full stacktraces.
Better error messages
Improve error messages of the client.
First beta release
This is the first beta release.
Breaking changes:
Api config can now have profiles:
; /usr/local/mbeanz.edn
{:local {:object-pattern "MyMbeanz:*"
:jmx-remote-host "localhost"
:jmx-remote-port 11080}
:prod {:object-pattern "MyMbeanz:*"
:jmx-remote-host "255.255.255.255"
:jmx-remote-port 11080}}
The api can then be used like this:
$ cat /var/tmp/mbeanz.port
50123
$ curl localhost:50123/local/list
[{"bean": "SomeMbean", "operation": "someLocalOperation"}, ...]
$ curl localhost:50123/prod/list
[{"bean": "SomeMbean", "operation": "someProdOperation"}, ...]
and the python client like this:
$ mbeanz local
$ mbeanz prod
v0.1.0-alpha: Merge pull request #6 from ojung/easy-installation
Enable easy installation