Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JMX Exporter Configs for Producers within the Confluent Server #62

Open
nerdynick opened this issue Dec 28, 2021 · 1 comment
Open
Labels
enhancement New feature or request

Comments

@nerdynick
Copy link
Member

When Control Center is enabled we leverage the ConfluentMetricsReporter within the Brokers. We should capture these metrics into prometheus.

Example Configs:

- pattern: kafka.producer<type=producer-metrics, client-id=(.+)><>(.+):\w* 
   name: kafka_producer_$2 
   labels: 
     client-id: "$1"
- pattern: kafka.producer<type=producer-node-metrics, client-id=(.+), node-id=(.+)><>(.+):\w* 
   name: kafka_producer_$3 
   labels: 
     client-id: "$1" 
     broker: "$2"
- pattern: kafka.producer<type=producer-topic-metrics, client-id=(.+), topic=(.+)><>(.+):\w* 
   name: kafka_producer_$3 
   labels: 
     client-id: "$1" 
     topic: "$2"
@waliaabhishek
Copy link
Member

SOme of those were deliberately blacklisted due to the sheer volume that they start producing at scale. Some folks are pretty sensitive to the scrape performance and that caused a bit of pushback. I can try it out again for the 7.x bump and see if it is okay with minimal scrape times.

@hifly81 hifly81 added the enhancement New feature or request label Aug 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants