I have successfully configured our application to export Quartz MBeans to JMX and can view everything in JConsole. I can do most scheduler operations.
The one I really want to run is "triggerJob", but it appears in the JConsole as greyed-out / disabled, so I cannot run it.
I looked at the commits that added the JMX code to Quartz, but I don't see the difference between triggerJob and other included operations.
Does anyone know what is going on?
EDIT - Description Found
Another StackOverflow problem describes what happens: Why are some methods on JConsole disabled
triggerJob (and two other operations) accept non-primitive parameters; these complex parameters cannot be provided in JConsole.
I don't understand if the MBean provider can provide a custom editor for JConsole (or simlar), but at least I have my answer.
source
share