Playing with rhqapi

posted on 24 November 2014

Recently I wanted to demo how to do something in RHQ’s CLI. It was a fairly simple thing but our API being what it is, built for and implemented in Java, the result ended up being kinda verbose and didn’t exactly look like your modern fluent Javascript code.

My git aliases

posted on 26 March 2014

Just a short note about the useful git aliases I’ve came up with during the course of my daily work with git and github.

Phantom reads and data paging

posted on 05 September 2013

Paging through the results is easy, right?

Scripting News in RHQ 4.5.0

posted on 27 September 2012

RHQ 4.5.0 (which we released today) contains a great deal of scripting enhancements that I think are worth talking about in more detail. In my eyes, the changes make the scripting in RHQ ready for serious use.

The Dark Powers of PowerMock

posted on 14 September 2012

Recently, we’ve started using Mockito and PowerMock in our testing. I won’t explain mocking and why or why not you should use it, but I want to share my experience with using PowerMock.

RHQ speaks Python

posted on 12 July 2012

In the past few weeks I was quite busy refactoring RHQ’s CLI and scripting integration. Funnily enough it all started because we wanted to add the support for CommonJS modules to our javascript interface. During the course of the refactoring, I found out that I’m actually heading in the direction of completely separating the "language" support from the rest of the RHQ, which then only speaks to it through the Java’s standard scripting APIs which are language independent.

RHQ meets Arquillian

posted on 09 March 2012

Historically, RHQ has had a little bit of a problem with test coverage of its various (agent) plugins. There is a multitude of problems with testing these but the following two are, IMHO, the main ones:

Securing Rhino in Java6

posted on 06 February 2012

In RHQ we let the users provide scripts that can be run when an alert fires. This is great for automation because the script can do anything the users can do with our remote API. But the users of course can write a script like this:

RHQ CLI over XMPP

posted on 06 February 2012

I watched the great demo of the XMPP server plugin for RHQ from Rafael Chies. Rafael is using a custom DSL to query the RHQ server for information but I thought that that really shouldn’t be necessary - it should be possible to use an ordinary CLI session behind this. Granted - the "query language" of our remote API is more complicated than the simple DSL Rafael is using but at the same time, the API we use in the CLI is much more feature rich and I wouldn’t have to reimplement any of it if I was able to "blend" the CLI session with the XMPP chat.

Git - merging after a revert

posted on 13 January 2012

As it happened, I managed to merge a feature branch into our mainline that was not completely finished. After trying to fix it directly in the mainline I figured out that the best thing to do is to revert my changes in master and continue in a feature branch.