Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[instrumentation] instrumentation base stabilization plan #4586

Open
6 tasks
pichlermarc opened this issue Mar 26, 2024 · 3 comments
Open
6 tasks

[instrumentation] instrumentation base stabilization plan #4586

pichlermarc opened this issue Mar 26, 2024 · 3 comments
Labels
never-stale pkg:instrumentation type:feature-tracking A feature with sub-issues that need to be addressed

Comments

@pichlermarc
Copy link
Member

pichlermarc commented Mar 26, 2024

Description

The @opentelemetry/instrumenation package is the base package used for all instrumentations. To reduce the maintenance burden for instrumentation authors which currently need to deal with possible breaking changes as well as users that use the instrumentation registration mechanism, we should promote the @opentelemetry/instrumenation package to stable.

Currently the following issues prevent stabilization:

Logs API stability:

Types from the logs API are used in the public interface and may break type compatibility when using different versions of the instrumentation base in the same app. Therefore we need to hold off on marking the @opentelemetry/instrumentation package as stable until the Logs API is integrated into the @opentelemetry/api package as a stable component OR we come up with a way to have experimental features in @opentelemetry/instrumentation, where the stable interface does not depend on the non-stable @opentelemetry/api-logs package.

Option 1 (Logs API stabilization)

This will be addressed by

Option 2 (Experimental features in `@opentelemetry/instrumentation)

This will be addressed by

@types/shimmer being part of the public API

@types/shimmer is currently part of the public API. We should avoid having a third-party dependency be part of the public API of this package.

This will be addressed by:

ESM instrumentation:

We currently offer an instrumentation customization hook for ESM in Node.js which uses import-in-the-middle. As of writing, the customization hooks concept is not yet stable in Node.js, but it is already available as a RC.

We should therefore explicitly document one or multiple minimum supported Node.js versions / version ranges (especially with regards to Node.js LTS versions) based on the stability of the customization hook in that Node.js version. If no versions are stable yet declare the provided customization hook as fully experimental. Update versions as needed.

We should also document that direct usage of import-in-the-middle/hook.mjs may cease to work in the future and is purely experimental to prevent being locked into using import-in-the-middle until the next major version, should we decide to move on from using that package for ESM instrumentation in the future and implement our own version of the customization hook at @opentelemetry/instrumentation/hook.mjs

We should also update documentation on how to set this customization hook when using the Node.js binary, be it via --import or otherwise, and explicitly declare all other ways that may be introduced in future Node.js versions as not directly supported (we may declare them as supported in a new minor version).

This will be addressed by

Public API review:

We should replace any occurrence of export * with explicit exports and and review the API surface for any types and functions that we may be able to remove. We should also do a final review of the state of the @opentelemetry/instrumenation package after the improvements mentioned above, and ensure that the package's API is up to our standards.

This will be addressed by

  • (TBD) issue to review the API surface
    • A maintainer/approver will create this issue once the above tasks are complete.
  • (TBD) depending on review of the API surface, any follow-up issues to deal with any shortcomings we've identified.
    • The person(s) working on the API surface review will create these follow-up issues
@pichlermarc pichlermarc added pkg:instrumentation needs:refinement This issue needs to be refined/broken apart into sub-issues before implementation type:feature-tracking A feature with sub-issues that need to be addressed labels Mar 26, 2024
Copy link

This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days.

@blumamir
Copy link
Member

blumamir commented Jun 27, 2024

update: applied in #4847

we should probably also consider if we want to remove instrumentationDescription of the public api Instrumentation interface. I don't see any reason for it to exist in code if we choose to walk the path open-telemetry/opentelemetry-js-contrib#2292. It is not used anywhere and one can already consume it from the package.json of each instrumentation package. related: #4725

@blumamir
Copy link
Member

one more breaking issue is making the instrumentation base _config property private, and so config interactions are only via the getter and setter:

Here is my opinion. If we already have a public API to access the field I think we should leverage that for accessing even in subclasses.

See #4668 currently blocked by open-telemetry/opentelemetry-js-contrib#2289

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
never-stale pkg:instrumentation type:feature-tracking A feature with sub-issues that need to be addressed
Projects
None yet
Development

No branches or pull requests

2 participants