github-source.json 823 B

1234567891011121314151617181920
  1. {
  2. "name": "github-source",
  3. "config":
  4. {
  5. "connector.class": "io.confluent.connect.github.GithubSourceConnector",
  6. "confluent.topic.bootstrap.servers": "kafka0:29092, kafka1:29092",
  7. "confluent.topic.replication.factor": "1",
  8. "tasks.max": "1",
  9. "github.service.url": "https://api.github.com",
  10. "github.access.token": "",
  11. "github.repositories": "provectus/kafka-ui",
  12. "github.resources": "issues,commits,pull_requests",
  13. "github.since": "2019-01-01",
  14. "topic.name.pattern": "github-${resourceName}",
  15. "key.converter": "org.apache.kafka.connect.json.JsonConverter",
  16. "key.converter.schema.registry.url": "http://schemaregistry0:8085",
  17. "value.converter": "org.apache.kafka.connect.json.JsonConverter",
  18. "value.converter.schema.registry.url": "http://schemaregistry0:8085"
  19. }
  20. }