{"id":26032713,"url":"https://github.com/apache/geronimo-opentracing","last_synced_at":"2025-10-12T08:33:24.495Z","repository":{"id":42189360,"uuid":"133724609","full_name":"apache/geronimo-opentracing","owner":"apache","description":"Apache Geronimo Microprofile OpenTracing implementation","archived":false,"fork":false,"pushed_at":"2022-12-21T18:52:06.000Z","size":193,"stargazers_count":2,"open_issues_count":2,"forks_count":6,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-10-06T00:36:39.577Z","etag":null,"topics":["geronimo","http","java","javaee","network-server","web-framework"],"latest_commit_sha":null,"homepage":"https://geronimo.apache.org/","language":"Java","has_issues":false,"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/apache.png","metadata":{"files":{"readme":"README.adoc","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}},"created_at":"2018-05-16T21:24:30.000Z","updated_at":"2022-02-23T13:11:56.000Z","dependencies_parsed_at":"2023-01-30T04:31:05.974Z","dependency_job_id":null,"html_url":"https://github.com/apache/geronimo-opentracing","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/apache/geronimo-opentracing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgeronimo-opentracing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgeronimo-opentracing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgeronimo-opentracing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgeronimo-opentracing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/geronimo-opentracing/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgeronimo-opentracing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010794,"owners_count":26084807,"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-12T02:00:06.719Z","response_time":53,"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":["geronimo","http","java","javaee","network-server","web-framework"],"created_at":"2025-03-06T22:51:46.346Z","updated_at":"2025-10-12T08:33:24.466Z","avatar_url":"https://github.com/apache.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Geronimo OpenTracing\n\nGeronimo OpenTracing provides an OpenTracing implementation and a Microprofile OpenTracing implementation at once.\n\nNOTE: sampling is not yet supported because it leads to push inconsistent spans to the backend, however you can always specialize (CDI)\nyour `FinishSpan` observer to implement it if desired.\n\n== Configuration\n\nNOTE: if you are using Microprofile Config it is used, otherwise it uses system properties.\n\n|===\n| Key | Description | Default\n|geronimo.opentracing.filter.active|Should OpenTracing be activated|true\n|geronimo.opentracing.filter.forcedTracing.urls|Urls for which the tracking should be activated automatically. The urls are actually the requets uri minus the context path.|-\n|geronimo.opentracing.filter.skippedTracing.urls|Urls for which the tracking should be skipped.|-\n|geronimo.opentracing.filter.skippedTracing.matcherType|Type of matcher for the url, default is `prefix` which means a `startsWith` is used on the url but you can also use `regex` which compiles the url as a `Pattern`|prefix\n|geronimo.opentracing.filter.forcedTracing.matcherType|Type of matcher for the url, default is `prefix` which means a `startsWith` is used on the url but you can also use `regex` which compiles the url as a `Pattern`|prefix\n|geronimo.opentracing.filter.forcedTracing.skipDefaultTags|Should `HTTP_METHOD`, `HTTP_URL` not be added to tags|false\n|geronimo.opentracing.server.filter.request.skip.\u003cendpoint class\u003e_\u003cendpoint method\u003e|Should server instrumentation be ignored|false\n|geronimo.opentracing.server.filter.request.skip|Should server instrumentation be ignored (if previous is not set)|false\n|geronimo.opentracing.server.filter.request.skipDefaultTags|Should `HTTP_METHOD`, `HTTP_URL` not be added to tags|false\n|geronimo.opentracing.server.filter.request.operationName.usePath|Should the operationName use the `@Path` annotations instead of class names.|false\n|geronimo.opentracing.client.filter.request.skip|Should client instrumentation be ignored|false\n|geronimo.opentracing.client.filter.request.skipDefaultTags|Should `HTTP_METHOD`, `HTTP_URL` not be added to tags|false\n|geronimo.opentracing.client.filter.request.skipPeerTags|Should `PEER_HOSTNAME`, `PEER_PORT` not be added to tags|false\n|geronimo.opentracing.propagation.headers.parentSpanId|Name of the header used to host the parent spanId value|`X-B3-ParentSpanId`\n|geronimo.opentracing.propagation.headers.spanId|Name of the header used to host the spanId value|`X-B3-SpanId`\n|geronimo.opentracing.propagation.headers.traceId|Name of the header used to host the traceId value|`X-B3-TraceId`\n|geronimo.opentracing.propagation.headers.baggagePrefix|Prefix of headers used to host the baggage values|`baggage-`\n|geronimo.opentracing.id.generator|`counter` (to generate longs), `uuid` (to generate random uuids) or `hex` (to use the hexa representation of the uuid generator). Specifies which kind of trace and span id are in use.|counter\n|geronimo.opentracing.id.generator.hex.prefix|For hex generator, a prefix to prepend to all ids.|-\n|geronimo.opentracing.span.converter.zipkin.active|Should spans converted to a zipkin representation. True until there is a standard opentracing format.|true\n|geronimo.opentracing.span.converter.zipkin.serviceName|The local serviceName.|hostname-jvmid\n|geronimo.opentracing.span.converter.zipkin.logger.active|Should a logger named `org.apache.geronimo.opentracing.zipkin` log each span as a Zipkin JSON. This allows to use a logger implementation to push the spans to any backend (like log4j2 kafka appender). It uses JUL as a facade.|true\n|geronimo.opentracing.span.converter.zipkin.logger.wrapAsList|Should zipkin JSON be logged wrapped in a list.|true\n|===\n\n== ExecutorServices\n\nTo monitor a CDI executor service, you can decorate it with `@TracedExecutorService`.\n\n== Extension module\n\n`geronimo-opentracing-extension` provides a `TracingProxyFactory` module allowing to use java proxies (on interfaces)\nto add tracing to all methods of the decorated instance.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fgeronimo-opentracing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fgeronimo-opentracing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fgeronimo-opentracing/lists"}