[rules-users] Drools AgendaEventListener

2010-11-18 Thread Agarwal, Beena
Can anyone explain when the ActivationCreatedEvent, BeforeActivationFiredEvent,AfterActivationFiredEvent are actually triggered? I added a AgendaEventListener on a StatefulKnowledgeSession and never see the events being fired when I'm in the debugger. I'm basically trying to collect some session

Re: [rules-users] Drools 5.1 and JMX

2010-11-17 Thread Agarwal, Beena
Is the startINternalMBeans operation supposed to show session stats? -Original Message- From: Agarwal, Beena Sent: Wednesday, November 17, 2010 7:27 AM To: 'Edson Tirelli' Subject: RE: [rules-users] Drools 5.1 and JMX Operations I see are only startInternalMBeans and stopInte

Re: [rules-users] Drools 5.1 and JMX

2010-11-16 Thread Agarwal, Beena
d JMX There is an operation on the main bean that starts the session specific mbeans. They are not started automatically because you just need them while actively monitoring. You can keep them off while not (another operation). Edson 2010/11/16 Agarwal, Beena : > I've enabled JMX using

[rules-users] Drools 5.1 and JMX

2010-11-16 Thread Agarwal, Beena
I've enabled JMX using the following configuration KnowledgeBaseConfiguration kbaseConf = KnowledgeBaseFactory.newKnowledgeBaseConfiguration(); kbaseConf.setOption(MBeansOption.ENABLED); commonKB = KnowledgeBaseFactory.newKnowledgeBase("kb-"+gameCode, kbaseConf);