{"id":18758556,"url":"https://github.com/rollulus/kafka-connect-cli","last_synced_at":"2025-10-04T21:55:26.169Z","repository":{"id":144306889,"uuid":"53677001","full_name":"rollulus/kafka-connect-cli","owner":"rollulus","description":"A CLI for Kafka Connect; moved to https://github.com/datamountaineer/kafka-connect-tools","archived":false,"fork":false,"pushed_at":"2016-05-30T08:42:29.000Z","size":15,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-28T10:52:12.419Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rollulus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-11T15:36:03.000Z","updated_at":"2019-01-20T03:31:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"06217442-d91d-49d0-931f-fba35438def6","html_url":"https://github.com/rollulus/kafka-connect-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rollulus/kafka-connect-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollulus%2Fkafka-connect-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollulus%2Fkafka-connect-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollulus%2Fkafka-connect-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollulus%2Fkafka-connect-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rollulus","download_url":"https://codeload.github.com/rollulus/kafka-connect-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollulus%2Fkafka-connect-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278380463,"owners_count":25977216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T17:46:50.152Z","updated_at":"2025-10-04T21:55:26.128Z","avatar_url":"https://github.com/rollulus.png","language":"Scala","readme":"Kafka Connect CLI\n=================\n\nDevelopment is continued at: https://github.com/datamountaineer/kafka-connect-tools\n-----------------------------------------------------------------------------------\n\nThis is a tiny command line interface (CLI) around the [Kafka Connect REST Interface](http://docs.confluent.io/2.0.1/connect/userguide.html#rest-interface) to manage connectors.\nIt is used in a git like fashion where the first program argument indicates the command: it can be one of `[ls|get|rm|create|run]`.\n\nThe CLI is meant to behave as a good unix citizen: input from `stdin`; output to `stdout`; out of band info to `stderr` and non-zero exit status on error.\nCommands dealing with configuration expect or produce data in .properties style: `key=value` lines and comments start with a `#`.\n\n    kafconcli 1.0\n    Usage: kafconcli [ls|get|rm|create|run] [options] [\u003cconnector-name\u003e...]\n\n      --help\n            prints this usage text\n      -e \u003cvalue\u003e | --endpoint \u003cvalue\u003e\n            Kafka REST URL, default is http://localhost:8083/\n\n    Command: ls\n    list active connectors names.\n\n    Command: get\n    get information about the specified connector(s).\n\n    Command: rm\n    remove the specified connector(s).\n\n    Command: create\n    create the specified connector with the .properties from stdin; the connector cannot already exist.\n\n    Command: run\n    create or update the specified connector with the .properties from stdin.\n\n      \u003cconnector-name\u003e...\n            connector name(s)\n\nGet Active Connectors\n---------------------\n\nCommand: `ls`\n\nExample:\n\n    $ ./cli ls\n    twitter-source\n\nGet Connector Information\n-------------------------\n\nCommand: `get`\n\nExample:\n\n    $ ./cli get twitter-source\n    #Connector `twitter-source`:\n    name=twitter-source\n    tasks.max=1\n\n    (snip)\n\n    track.terms=test\n    #task ids: 0\n\nDelete a Connector\n------------------\n\nCommand: `rm`\n\nExample:\n\n    $ ./cli rm twitter-source\n\nCreate a New Connector\n----------------------\n\nThe connector cannot already exist.\n\nCommand: `create`\n\nExample:\n\n    $ ./cli create twitter-source \u003ctwitter.properties\n    #Connector `twitter-source`:\n    name=twitter-source\n    tasks.max=1\n\n    (snip)\n\n    track.terms=test\n    #task ids: 0\n\nCreate or Update a Connector\n----------------------------\n\nEither starts a new connector if it did not exist, or update an existing connector.\n\nCommand: `run`\n\nExample:\n\n    $ ./cli run twitter-source \u003ctwitter.properties\n    #Connector `twitter-source`:\n    name=twitter-source\n    tasks.max=1\n\n    (snip)\n\n    track.terms=test\n    #task ids: 0\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollulus%2Fkafka-connect-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frollulus%2Fkafka-connect-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollulus%2Fkafka-connect-cli/lists"}