I installed Kafka in a DC/OS cluster using the framework.
I would like to get some metrics to monitor it, I saw that there is this configuration:
"TASKCFG_ALL_KAFKA_METRICS_REPORTERS": "com.airbnb.kafka.kafka08.StatsdMetricsReporter",
I looked around in the code a saw that in server.properties.mustache are some configuration parameters:
external.kafka.statsd.port={{STATSD_UDP_PORT}}
external.kafka.statsd.host={{STATSD_UDP_HOST}}
external.kafka.statsd.reporter.enabled=true
Then I looked in the node where one of the brokers is running and the configuration has this values:
external.kafka.statsd.port=57925
external.kafka.statsd.host=198.51.100.1
external.kafka.statsd.reporter.enabled=true
external.kafka.statsd.tag.enabled=true
In this node, at that port, there is a processes listening with mesos-agent in its name.
How can I see the metrics reported by the Kafka brokers?