-
-
Notifications
You must be signed in to change notification settings - Fork 38
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
insert mutli index on the same topic #52
Comments
Hi, Then, the output topic is based on the name of the input index. But if you need to put the output in a single topic, you might use the confluent connect transformer https://docs.confluent.io/platform/current/connect/transforms/regexrouter.html#regexrouter in order to rename the topic as you prefer. Hope this helps |
Hi there, Is there another means of doing this? I need to send multiple indexes to one fixed topic name but the connector seems to be completely ignoring the regex configuration entries. For example qradar-wcf-000011, qradar-wcf-000012, qradar-wcf-000013 (they increment on elasticsearch over time) all to a kafka topic called "qradar-wcf". Thanks, |
Add the following to your config part :
this will publish all the messages to the topic qradar-wcf |
Hi,
First of all thank you for your amazing job.
I have a question. right now i'm tryin to insert mutli index from ES to one topic on Kafka.
I wonder if it's possible to do that. Because right now, as long as i'm using one parameters on "index.prefix" everything work perfectly. As soon as I'm tryin to put an extra index like => index.prefix= my_awesome_index, my_beauty_index (using yaml)
Nothing come from ES.
So my question is, Do I have to add an other connector or simply duplicate the line ?
The text was updated successfully, but these errors were encountered: