{"id":37195544,"url":"https://github.com/codekoala/celeriac.v1","last_synced_at":"2026-01-14T22:44:14.459Z","repository":{"id":136711886,"uuid":"45134870","full_name":"codekoala/celeriac.v1","owner":"codekoala","description":"Golang client library for adding support for interacting and monitoring Celery workers, tasks and events.","archived":false,"fork":true,"pushed_at":"2015-10-28T18:52:49.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T14:18:08.416Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"svcavallar/celeriac.v1","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codekoala.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-10-28T18:52:41.000Z","updated_at":"2015-10-28T18:52:42.000Z","dependencies_parsed_at":"2023-03-13T15:05:37.629Z","dependency_job_id":null,"html_url":"https://github.com/codekoala/celeriac.v1","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codekoala/celeriac.v1","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekoala%2Fceleriac.v1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekoala%2Fceleriac.v1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekoala%2Fceleriac.v1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekoala%2Fceleriac.v1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codekoala","download_url":"https://codeload.github.com/codekoala/celeriac.v1/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekoala%2Fceleriac.v1/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28436758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-01-14T22:44:13.757Z","updated_at":"2026-01-14T22:44:14.435Z","avatar_url":"https://github.com/codekoala.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Celeriac\n=======\n\nGolang client library for adding support for interacting and monitoring Celery workers and tasks.\n\nIt provides functionality to place tasks on the task queue, as well\nas monitor task and worker events.\n\nDependencies\n------------\nThis library depends upon the following packages:\n- github.com/streadway/amqp\n- github.com/Sirupsen/logrus\n- github.com/nu7hatch/gouuid\n- github.com/pquerna/ffjson\n\nUsage\n-----\nInstallation: `go get github.com/svcavallar/celeriac.v1`\n\nThis imports a new namespace called `celeriac`\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\"os\"\n\n\t\"github.com/svcavallar/celeriac.v1\"\n)\n\nfunc main() {\n\ttaskBrokerURI := \"amqp://user:pass@localhost:5672/vhost\"\n\n\t// Connect to RabbitMQ task queue\n\tTaskQueueMgr, err := celeriac.NewTaskQueueMgr(taskBrokerURI)\n\tif err != nil {\n\t\tlog.Printf(\"Failed to connect to task queue: %v\", err)\n\t\tos.Exit(-1)\n\t}\n\n\tlog.Printf(\"Service connected to task queue - (URL: %s)\", taskBrokerURI)\n\n\t// Get the task events from the task events channel\n\tfor {\n\t\tselect {\n\t\tdefault:\n\t\t\tev := \u003c-TaskQueueMgr.Monitor.EventsChannel\n\n\t\t\tif ev != nil {\n\n\t\t\t\tif x, ok := ev.(*celeriac.WorkerEvent); ok {\n\t\t\t\t\tlog.Printf(\"Task monitor: Worker event - %s\", x.Type)\n\t\t\t\t} else if x, ok := ev.(*celeriac.TaskEvent); ok {\n\t\t\t\t\tlog.Printf(\"Task monitor: Task event - %s [ID]: %s\", x.Type, x.UUID)\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t}\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodekoala%2Fceleriac.v1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodekoala%2Fceleriac.v1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodekoala%2Fceleriac.v1/lists"}