Hello guys,
I’m migrating from RabbitMQ to Solace, there’s a feature important in my spring boot applications with the rabbitmq client about metrics. We are using the metric rabbitmq.consumed
to find the rate of consumed messages per second and scaling horizontally after a certain threshold.
I’m able to get this metric because the rabbit client delivers it for me as you can see here: Metrics support in RabbitMQ Java Client 4.0 | RabbitMQ
That said, my question is: The solace client for java (sol-jcsmp) already delivers its metrics? If not, How I can have this metric?
Hi @murillocg ,
It looks like your question was answered over on github: Solace client metrics in order to scale my application · Issue #76 · SolaceProducts/solace-spring-boot · GitHub
Since it seems I can’t do that with the Solace client, I created a Spring Cloud Stream Channel Interceptor, counted the metric manually, and sent it to the micrometer library.