-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Update Kafka consumer integration documentation with configuration ecample #20745
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -15,7 +15,7 @@ | |||||
|
||||||
### Installation | ||||||
|
||||||
The Agent's Kafka consumer check is included in the [Datadog Agent][2] package. No additional installation is needed on your Kafka nodes. | ||||||
The Agent's Kafka consumer check is included in the [Datadog Agent][2] package. No additional installation is needed on your Kafka nodes, but configuration is still required. | ||||||
|
||||||
### Configuration | ||||||
|
||||||
|
@@ -30,6 +30,15 @@ | |||||
|
||||||
1. Edit the `kafka_consumer.d/conf.yaml` file, in the `conf.d/` folder at the root of your [Agent's configuration directory][3]. See the [sample kafka_consumer.d/conf.yaml][4] for all available configuration options. | ||||||
|
||||||
Here's a barebones example configuration: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
```yaml | ||||||
init_config: | ||||||
|
||||||
instances: | ||||||
- kafka_connect_str: kafka:29092 # Replace with your Kafka cluster address | ||||||
monitor_unlisted_consumer_groups: true | ||||||
``` | ||||||
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
2. [Restart the Agent][5]. | ||||||
|
||||||
##### Log collection | ||||||
|
@@ -128,14 +137,14 @@ | |||||
- [Monitoring Kafka with Datadog][15] | ||||||
|
||||||
[1]: https://raw.githubusercontent.com/DataDog/integrations-core/master/kafka_consumer/images/kafka_dashboard.png | ||||||
[2]: /account/settings/agent/latest | ||||||
Check failure on line 140 in kafka_consumer/README.md
|
||||||
[3]: https://docs.datadoghq.com/agent/guide/agent-configuration-files/#agent-configuration-directory | ||||||
[4]: https://github.com/DataDog/integrations-core/blob/master/kafka_consumer/datadog_checks/kafka_consumer/data/conf.yaml.example | ||||||
Check failure on line 142 in kafka_consumer/README.md
|
||||||
[5]: https://docs.datadoghq.com/agent/guide/agent-commands/#start-stop-and-restart-the-agent | ||||||
[6]: https://docs.datadoghq.com/integrations/kafka/#log-collection | ||||||
[7]: https://docs.datadoghq.com/agent/guide/autodiscovery-with-jmx/?tab=containerizedagent | ||||||
[8]: https://docs.datadoghq.com/agent/guide/agent-commands/#agent-status-and-information | ||||||
[9]: https://github.com/DataDog/integrations-core/blob/master/kafka_consumer/metadata.csv | ||||||
[10]: https://docs.datadoghq.com/integrations/faq/troubleshooting-and-deep-dive-for-kafka/ | ||||||
[11]: https://docs.datadoghq.com/integrations/guide/agent-failed-to-retrieve-rmiserver-stub/ | ||||||
[13]: https://www.datadoghq.com/blog/monitoring-kafka-performance-metrics | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.