{"id":17371851,"url":"https://github.com/dulikvor/cppkin","last_synced_at":"2025-09-11T01:32:58.246Z","repository":{"id":62565152,"uuid":"104673365","full_name":"dulikvor/cppKin","owner":"dulikvor","description":"Zipkin tracing library for Python and C++","archived":false,"fork":false,"pushed_at":"2019-08-07T20:05:26.000Z","size":45442,"stargazers_count":27,"open_issues_count":4,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-28T23:43:24.795Z","etag":null,"topics":["cpp","distributed-tracing","python","tracing","zipkin"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dulikvor.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":"2017-09-24T20:16:21.000Z","updated_at":"2025-02-23T12:07:25.000Z","dependencies_parsed_at":"2022-11-03T16:45:42.134Z","dependency_job_id":null,"html_url":"https://github.com/dulikvor/cppKin","commit_stats":null,"previous_names":["dudi119/cppkin"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/dulikvor/cppKin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulikvor%2FcppKin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulikvor%2FcppKin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulikvor%2FcppKin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulikvor%2FcppKin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dulikvor","download_url":"https://codeload.github.com/dulikvor/cppKin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulikvor%2FcppKin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274560417,"owners_count":25308111,"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-09-10T02:00:12.551Z","response_time":83,"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":["cpp","distributed-tracing","python","tracing","zipkin"],"created_at":"2024-10-16T01:05:53.547Z","updated_at":"2025-09-11T01:32:58.213Z","avatar_url":"https://github.com/dulikvor.png","language":"C++","readme":"# cppkin\n\n[![Join the chat at https://gitter.im/cppKin/Lobby](https://badges.gitter.im/cppKin/Lobby.svg)](https://gitter.im/cppKin/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge) [![Build Status](https://travis-ci.org/Dudi119/cppKin.svg?branch=master)](https://travis-ci.org/Dudi119/cppKin) [![Build status](https://ci.appveyor.com/api/projects/status/riaj54pn4h08xy40?svg=true)](https://ci.appveyor.com/project/Dudi119/cppKin)\n\n`cppkin` is an instrumentation client library for `zipkin` available in **C++** and **Python**.\n\n## Linux Requirements:\n* c++11.\n* Cmake version \u003e 3.5.\n\n## Windows Requirements:\n* VC++ 12.0 (Visual Studio 2013 default toolset) or 14.0 (Visual Studio 2015 default toolset).\n* Cmake version \u003e 3.5.\n\n## Getting Started:\ncppkin is dependent upon -\n\n| Package                 | Required   |  version  |\n| ----------------------- | -----------| --------- |\n| boost                   | mandatory  | \u003e= 1.65.1 |\n| curl                    | mandatory  | \u003e= 7.54.1 |\n| rapidjson               | mandatory  | \u003e= 1.1.0  |\n| core                    | mandatory  | \u003e= 1.1    |\n| pybind11                | python or tests  | \u003e= 2.2.4 |\n| bottle                  | tests  |    \u003e= 0.12.13 |\n| google benchmark        | tests |     \u003e= 1.3     |\n| thrift                  | only for scribe transport | \u003e= 0.10 |\n\n### Linux Install:\nAll mandatory packages besdies **core** can be fetched directly:\n```\napt-get install cmake pybind11-dev rapidjson-dev libcurl4-openssl-dev libblkid-dev e2fslibs-dev libboost-all-dev libaudit-dev\n```\n\nUse the help command to review the different configuration arguments:\n```\n. cppkin.sh --help\n```\n\nBuild cppkin by using the shell script:\n```\nmkdir build \u0026\u0026 cd build\n../cppkin.sh config #add arguments of choice\nmake\nmake install\n```\n\n### Windows Install:\nUse the help command to review the different configuration arguments:\n```\ncppkin.bat --help\n```\n\nBuild cppkin by using the batch script:\n```\nmkdir build \u0026\u0026 cd build\n..\\cppkin.bat install #add arguments of choice\n```\n\n### Python Install:\nOnly available in Linux as of now.\n```\npip install cppkin\n```\n\n### Language:\n- [cppkin - cpp variation](https://github.com/Dudi119/cppKin/blob/master/docs/cpp_client.md)\n- [cppkin - python variation](https://github.com/Dudi119/cppKin/blob/master/docs/python_client.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdulikvor%2Fcppkin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdulikvor%2Fcppkin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdulikvor%2Fcppkin/lists"}