Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for Kafka as a new destination type in the configuration system. The changes include adding Kafka-specific configuration options, updating utility functions, and modifying documentation to reflect the new destination.
Key changes include:
Kafka Configuration:
Kafka
struct incommon/config/kafka.go
to define Kafka-specific settings and methods.common/config/root.go
to includeKafka
in the list of available configers.Utility Functions:
errorMissingKey
function incommon/config/utils.go
to handle missing configuration keys.Destination Types:
KafkaDestinationType
to the list of destination types incommon/dests.go
.Documentation and Metadata:
destinations/data/kafka.yaml
to define Kafka's configuration fields and display properties.docs/adding-new-dest.mdx
anddocs/backends-overview.mdx
to include Kafka as a supported destination. [1] [2] [3] [4]