Skip to content

Add filters on kafka connect config to kafka connect component #244

Open
@sappusaketh

Description

@sappusaketh

Issue submitter TODO list

  • I've searched for an already existing issues here
  • I'm running a supported version of the application which is listed here and the feature is not present there

Is your proposal related to a problem?

At present there is no way to filter things on kafka connect config. It would be nice to have multiple filters where one could select type of connector and other could be used to filter connector config

example: I want to filter all postgres source connectors with avro key/value converter?

Describe the feature you're interested in

I m interested to see if we can apply multiple filters on kafka connector config in conjunction with one another

Describe alternatives you've considered

At present I m using connect api to fetch all my connectors and apply jq filters

 curl -X GET  https://<redacted>/connectors | jq -r '.[]' | while read -r connector; do
  curl -s -X GET "https://<redacted>/connectors/${connector}/config" |   jq -r '. | select(.["connector.class"] == "io.debezium.connector.postgresql.PostgresConnector" and .["key.converter"] == "org.apache.kafka.connect.json.JsonConverter") | .name'
 done

Version you're running

2956664 v1.0.0

Additional context

Here is how I do it sometimes

Metadata

Metadata

Assignees

Labels

area/connectKafka Connect, its connectorsarea/uxUser experiense issuesscope/backendRelated to backend changesscope/frontendRelated to frontend changesstatus/needs-attentionCollective discussion is requiredstatus/triage/completedAutomatic triage completedtype/enhancementEn enhancement/improvement to an already existing feature

Projects

Status

Backlog

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions