{"id":13761681,"url":"https://github.com/census-ecosystem/opencensus-php-exporter-jaeger","last_synced_at":"2025-12-30T04:11:48.562Z","repository":{"id":54569457,"uuid":"127479686","full_name":"census-ecosystem/opencensus-php-exporter-jaeger","owner":"census-ecosystem","description":"OpenCensus PHP exporters for Jaeger","archived":true,"fork":false,"pushed_at":"2023-05-02T19:22:32.000Z","size":47,"stargazers_count":6,"open_issues_count":4,"forks_count":11,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-26T13:45:19.536Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/census-ecosystem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS"}},"created_at":"2018-03-30T22:48:19.000Z","updated_at":"2023-07-31T17:40:43.000Z","dependencies_parsed_at":"2024-01-17T16:58:10.143Z","dependency_job_id":"a2160847-8c74-4023-8def-acd7c0c5d914","html_url":"https://github.com/census-ecosystem/opencensus-php-exporter-jaeger","commit_stats":{"total_commits":10,"total_committers":4,"mean_commits":2.5,"dds":0.6,"last_synced_commit":"ae10af67cca78af4e9082489b314e1ce4ba15716"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-php-exporter-jaeger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-php-exporter-jaeger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-php-exporter-jaeger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-php-exporter-jaeger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/census-ecosystem","download_url":"https://codeload.github.com/census-ecosystem/opencensus-php-exporter-jaeger/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224970216,"owners_count":17400292,"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","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-08-03T14:00:22.161Z","updated_at":"2025-12-12T20:02:41.040Z","avatar_url":"https://github.com/census-ecosystem.png","language":"PHP","funding_links":[],"categories":["Exporters"],"sub_categories":["PHP"],"readme":"\u003e **Warning**\n\u003e\n\u003e OpenCensus and OpenTracing have merged to form [OpenTelemetry](https://opentelemetry.io), which serves as the next major version of OpenCensus and OpenTracing.\n\u003e\n\u003e OpenTelemetry has now reached feature parity with OpenCensus, with tracing and metrics SDKs available in .NET, Golang, Java, NodeJS, and Python. **All OpenCensus Github repositories, except [census-instrumentation/opencensus-python](https://github.com/census-instrumentation/opencensus-python), will be archived on July 31st, 2023**. We encourage users to migrate to OpenTelemetry by this date.\n\u003e\n\u003e To help you gradually migrate your instrumentation to OpenTelemetry, bridges are available in Java, Go, Python, and JS. [**Read the full blog post to learn more**](https://opentelemetry.io/blog/2023/sunsetting-opencensus/).\n\n# OpenCensus Jaeger Exporter for PHP\n\nThis library provides an [`ExporterInterface`][exporter-interface] for exporting\nTrace data to a Jaeger instance using Thrift (Compact Protocol) over UDP.\n\n[![CircleCI](https://circleci.com/gh/census-ecosystem/opencensus-php-exporter-jaeger.svg?style=svg)][ci-build]\n[![Packagist](https://img.shields.io/packagist/v/opencensus/opencensus-exporter-jaeger.svg)][packagist-package]\n![PHP-Version](https://img.shields.io/packagist/php-v/opencensus/opencensus-exporter-jaeger.svg)\n\n## Requirements\n\n* PHP \u003e= 5.6\n* 64-bit version of PHP\n\n## Installation \u0026 basic usage\n\n1. Install the `opencensus/opencensus-exporter-jaeger` package using [composer][composer]:\n\n    ```bash\n    $ composer require opencensus/opencensus-exporter-jaeger:~0.1\n    ```\n\n1. Initialize a tracer for your application:\n\n    ```php\n    use OpenCensus\\Trace\\Tracer;\n    use OpenCensus\\Trace\\Exporter\\JaegerExporter;\n\n    Tracer::start(new JaegerExporter('my-service-name'));\n    ```\n\n## Customization\n\nYou may provide an associative array of options to the `JaegerExporter` at\ninitialization:\n\n```php\n$options = [];\n$exporter = new JaegerExporter('my-service-name', $options);\n```\n\nThe following options are available:\n\n| Option | Default | Description |\n| ------ | ------- | ----------- |\n| `host` | \"127.0.0.1\" | The TCP IP address to send the UDP request to |\n| `port` | 6831 | The TCP port to send the UDP request to |\n| `tags` | (empty) | An associative array of tags to mark this process with |\n| `client` | null | Optional [`AgentIf`][agent-interface] interface to use for testing |\n\n## Versioning\n\n[![Packagist](https://img.shields.io/packagist/v/opencensus/opencensus-exporter-jaeger.svg)][packagist-package]\n\nThis library follows [Semantic Versioning][semver].\n\nPlease note it is currently under active development. Any release versioned\n0.x.y is subject to backwards incompatible changes at any time.\n\n**GA**: Libraries defined at a GA quality level are stable, and will not\nintroduce backwards-incompatible changes in any minor or patch releases. We will\naddress issues and requests with the highest priority.\n\n**Beta**: Libraries defined at a Beta quality level are expected to be mostly\nstable and we're working towards their release candidate. We will address issues\nand requests with a higher priority.\n\n**Alpha**: Libraries defined at an Alpha quality level are still a\nwork-in-progress and are more likely to get backwards-incompatible updates.\n\n**Current Status:** Alpha\n\n\n## Contributing\n\nContributions to this library are always welcome and highly encouraged.\n\nSee [CONTRIBUTING](CONTRIBUTING.md) for more information on how to get started.\n\n## Releasing\n\nSee [RELEASING](RELEASING.md) for more information on releasing new versions.\n\n## License\n\nApache 2.0 - See [LICENSE](LICENSE) for more information.\n\n## Disclaimer\n\nThis is not an official Google product.\n\n[exporter-interface]: https://github.com/census-instrumentation/opencensus-php/blob/master/src/Trace/Exporter/ExporterInterface.php\n[census-org]: https://github.com/census-instrumentation\n[composer]: https://getcomposer.org/\n[agent-interface]: https://github.com/census-instrumentation/opencensus-php-exporter-jaeger/blob/master/src/Thrift/Agent.php#L19\n[semver]: http://semver.org/\n[ci-build]: https://circleci.com/gh/census-ecosystem/opencensus-php-exporter-jaeger\n[packagist-package]: https://packagist.org/packages/opencensus/opencensus-exporter-jaeger\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcensus-ecosystem%2Fopencensus-php-exporter-jaeger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcensus-ecosystem%2Fopencensus-php-exporter-jaeger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcensus-ecosystem%2Fopencensus-php-exporter-jaeger/lists"}