Skip to content

Releases: ojung/mbeanz

v1.1.2

13 Oct 23:48
Compare
Choose a tag to compare
Print attribute name

Support reading attributes

13 Oct 23:38
Compare
Choose a tag to compare

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

07 Oct 02:54
Compare
Choose a tag to compare

First stable release 🎂

Client improvements

02 Oct 03:25
Compare
Choose a tag to compare
Client improvements Pre-release
Pre-release

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

01 Oct 05:53
Compare
Choose a tag to compare
Better error messages Pre-release
Pre-release

Improve error messages of the client.

First beta release

01 Oct 04:07
Compare
Choose a tag to compare
First beta release Pre-release
Pre-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

23 Sep 03:22
Compare
Choose a tag to compare
Enable easy installation