{"id":15784292,"url":"https://github.com/cedricziel/heroku-php-ext-opentelemetry","last_synced_at":"2026-04-18T00:31:44.809Z","repository":{"id":221987911,"uuid":"755940109","full_name":"cedricziel/heroku-php-ext-opentelemetry","owner":"cedricziel","description":"OpenTelemetry PHP Auto-Instrumentation for Heroku","archived":false,"fork":false,"pushed_at":"2024-02-11T20:48:10.000Z","size":218,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-29T08:43:26.038Z","etag":null,"topics":["dokku","heroku","opentelemetry","opentelemetry-php"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/cedricziel.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":"2024-02-11T14:32:23.000Z","updated_at":"2024-02-11T20:51:36.000Z","dependencies_parsed_at":"2024-10-26T01:38:08.672Z","dependency_job_id":"f8b090fc-c0b5-4945-8642-e2840187c8e9","html_url":"https://github.com/cedricziel/heroku-php-ext-opentelemetry","commit_stats":{"total_commits":6,"total_committers":1,"mean_commits":6.0,"dds":0.0,"last_synced_commit":"70b332c33e94cd4c94ad459b71fc38b42c31dd57"},"previous_names":["cedricziel/heroku-php-ext-opentelemetry"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cedricziel/heroku-php-ext-opentelemetry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricziel%2Fheroku-php-ext-opentelemetry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricziel%2Fheroku-php-ext-opentelemetry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricziel%2Fheroku-php-ext-opentelemetry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricziel%2Fheroku-php-ext-opentelemetry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cedricziel","download_url":"https://codeload.github.com/cedricziel/heroku-php-ext-opentelemetry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricziel%2Fheroku-php-ext-opentelemetry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31951258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["dokku","heroku","opentelemetry","opentelemetry-php"],"created_at":"2024-10-04T20:01:38.613Z","updated_at":"2026-04-18T00:31:44.747Z","avatar_url":"https://github.com/cedricziel.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenTelemetry extensions for Heroku\n\nThis package provides PHP extensions for the OpenTelemetry SDK to enable collection\nof compatible signals through auto-instrumentation.\n\n## Usage\n\nSet the `HEROKU_PHP_PLATFORM_REPOSITORIES` environment variable pointing to this (or your) repository.\n\nOnce set, heroku will install the extensions on the next deploy.\n\nOn Heroku:\n\n```shell\nheroku config:set --app=APP_NAME HEROKU_PHP_PLATFORM_REPOSITORIES=\"https://cedricziel.github.io/heroku-php-ext-opentelemetry/\"\n```\n\nOn dokku\n    \n```shell\ndokku config:set --no-restart APP_NAME HEROKU_PHP_PLATFORM_REPOSITORIES=\"https://cedricziel.github.io/heroku-php-ext-opentelemetry/\"\n```\n\n## Next steps\n\nAfter installing the extensions, you can enable and configure auto-instrumentation in your application.\n\nPlease check the PHP auto-instrumentation documentation of the OpenTelemetry SDK for PHP for more information.\n\nhttps://opentelemetry.io/docs/languages/php/automatic/\n\n### Enable and configure auto-instrumentation\n\nSet the following environment variables to enable and configure auto-instrumentation:\n\n * `OTEL_PHP_AUTOLOAD_ENABLED=true` to enable auto-instrumentation\n * `OTEL_SERVICE_NAME=your-service-name` to set the service name\n * `OTEL_TRACES_EXPORTER=otlp` to enable exporting traces to an OpenTelemetry Collector\n * `OTEL_EXPORTER_OTLP_PROTOCOL=grpc` to use gRPC\n * `OTEL_EXPORTER_OTLP_ENDPOINT=http://collector:4318` to set the endpoint of the OpenTelemetry Collector\n * `OTEL_PROPAGATORS=baggage,tracecontext` to enable baggage and trace context propagation\n\nOn Dokku:\n\n```shell\ndokku config:set --no-restart APP_NAME OTEL_PHP_AUTOLOAD_ENABLED=true \\\n    OTEL_SERVICE_NAME=your-service-name \\\n    OTEL_TRACES_EXPORTER=otlp \\\n    OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf \\\n    OTEL_EXPORTER_OTLP_ENDPOINT=http://collector:4318 \\\n    OTEL_PROPAGATORS=baggage,tracecontext\n```\n\nOn Heroku:\n\n```shell\ndokku config:set --no-restart APP_NAME OTEL_PHP_AUTOLOAD_ENABLED=true \\\n    OTEL_SERVICE_NAME=your-service-name \\\n    OTEL_TRACES_EXPORTER=otlp \\\n    OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf \\\n    OTEL_EXPORTER_OTLP_ENDPOINT=http://collector:4318 \\\n    OTEL_PROPAGATORS=baggage,tracecontext\n```\n\nLearn more about the environment variables in the OpenTelemetry documentation: https://opentelemetry.io/docs/specs/otel/protocol/exporter/\n\n### Install auto-instrumentation packages in your application\n\nFind auto-instrumentation for PHP on Packagist: https://packagist.org/search/?query=open-telemetry\u0026tags=instrumentation\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedricziel%2Fheroku-php-ext-opentelemetry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcedricziel%2Fheroku-php-ext-opentelemetry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedricziel%2Fheroku-php-ext-opentelemetry/lists"}