Samik
Samik

Reputation: 29

How to enable JMX Metrics for Strimzi-Kafka Bridge

I'm enabling JMX port for Strimzi-Kafka bridge by adding these lines in the Kafka-Bridge.sh file.

-Dcom.sun.management.jmxremote.port=9250
-Dcom.sun.management.jmxremote.rmi.port=9250 
-Dcom.sun.management.jmxremote.authenticate=false 
-Dcom.sun.management.jmxremote.ssl=false

After this, when I run strimzi and check it in JConsole for the available Metrics, I only get to see basic Java metrics. But no Strimzi specific metrics are available.

JConsole Image for exposed Metrics by Strimzi-Kafka-Bridge application

Is there a way to enable strimzi specific Metrics? Is there any more configuration required?

Upvotes: 0

Views: 496

Answers (1)

Jakub
Jakub

Reputation: 4006

The Strimzi HTTP Bridge doesn't support JMX connections. So I do not think you can do that.

Upvotes: 1

Related Questions