Get the count of messages in-memory message store in wso2 esb

326 Views Asked by At

How to get the count of messages in-memory message store in WSO2 ESB?
I want to get the count in XML configuration, like to be used in proxy service or sequence or message processor etc.
I want it to be used in XML.

2

There are 2 best solutions below

0
On BEST ANSWER

I got it by pushing the message to db and get as per the count required as in this answer of me take a look at my answer

0
On

You can use script mediator with this code:

var msg_store = mc.getConfiguration().getMessageStore('YourMessageStoreName')
var log = mc.getServiceLog()
log.info("Current size of Message Store "+msg_store.size())