7.1 KiB
Semantic convention libraries
The code for OpenTelemetry Semantic Conventions defined in this repository can be auto-generated.
OpenTelemetry Language SIGs can generate Semantic Conventions code in the form that's idiomatic for their language and may (or may not) ship it as a stand-alone library.
This document outlines common patterns and provides non-normative guidance on how to structure semantic conventions artifact and generate the code.
Stability and Versioning
Semantic Conventions contain a mix of stability levels. Language SIGs that ship semantic conventions library may decide to ship a stable artifact with stable part of the Semantic Conventions, a preview artifact with all Semantic Conventions, or other combination that's idiomatic for this language and provides SemVer 2.0 stability guarantees.
Possible solutions include:
- Generate all Semantic Conventions for a given version in specific folder while keeping old versions intact. It is used by opentelemetry-go but could be problematic if the artifact size is a concern.
- Follow language-specific conventions to annotate experimental parts. For example, Semantic Conventions in Python puts experimental attributes in
opentelemetry.semconv._incubatingimport path which is considered (following Python underscore convention) to be internal and subject to change. - Ship two different artifacts: one that contains stable Semantic Conventions and another one with all available conventions. For example, semantic-conventions in Java are shipped in two artifacts:
opentelemetry-semconvandopentelemetry-semconv-incubating.
Note: Shipping two versions of the same artifact (stable and preview) could be problematic due to diamond-dependency problems. For example, if user application depends on the
semconv v1.0.0-previewand some library brings transitive dependency onsemconv v1.1.0that does not contain experimental conventions, the latter would be resolved leading to compilation or runtime issues in the application.
Instrumentation libraries should depend on the stable (part of) semantic convention artifact or copy relevant definitions into their own code base. Experimental semantic conventions are intended for end-user applications.
Deprecated Conventions
It's recommended to generate code for deprecated attributes, metrics, and other conventions. Use appropriate annotations to mark them as deprecated.
Conventions have a stability property which provide the stability level at the deprecation time (experimental or stable) and
the deprecated property that describes deprecation reason which can be used to generate documentation.
- Deprecated conventions that reached stability should not be removed without major version update according to SemVer.
- Conventions that were deprecated while being experimental should still be generated and kept in the preview (part of) semantic conventions artifact. It minimizes runtime issues and breaking changes in user applications.
Keep stable convention definitions inside the preview (part of) semantic conversions artifact. It prevents user code from breaking when semantic convention stabilizes. Deprecate stable definitions inside the preview artifact and point users to the stable location in generated documentation.
For example, in Java http.request.method attribute is defined as the deprecated io.opentelemetry.semconv.incubating.HttpIncubatingAttributes.HTTP_REQUEST_METHOD field and also as stable io.opentelemetry.semconv.HttpAttributes.HTTP_REQUEST_METHOD.
Semantic Conventions Artifact Structure
This section contains suggestions on structuring semantic convention artifact(s) which should be adjusted to the specific language.
- Artifact name:
opentelemetry-semconv- stable conventionsopentelemetry-semconv-incubating- (if applicable) the preview artifact containing all conventions
- Namespace:
opentelemetry.semconvandopentelemetry.semconv.incubating - All supported Schema URLs should be listed to allow different instrumentations in the same application to provide the exact version of conventions they follow.
- Attributes, metrics, and other convention definitions should be grouped by the convention type and the root namespace. See the example below:
├── SchemaUrls.code
├── attributes
│ ├── ClientAttributes.code
│ ├── HttpAttributes.code
│ └── ...
├── metrics
│ ├── HttpMetrics.code
│ └── ...
└── events
└── ...
Generating semantic conventions
Note: The tooling used for code generation may change to opentelemetry-weaver, without any breaking changes in the generated code and with minimal changes to generation process and templates.
The generation is done using build-tools code generator. It's based on YAML definitions of the semantic conventions and uses Jinja templates.
For example, this Jinja template can be used to generate Python constant for an attribute name along with the docstring.
{{attribute.fqn | to_const_name}} = "{{attribute.fqn}}"
"""
{{attribute.brief | to_doc_brief}}.
{%- if attribute.note %}
Note: {{attribute.note | to_doc_brief | indent}}.
{%- endif %}
"""
It generates the following code:
SERVER_ADDRESS = "server.address"
"""
Server domain name if available without reverse DNS lookup; otherwise, IP address or Unix domain socket name.
Note: When observed from the client side, and when communicating through an intermediary, `server.address` SHOULD represent the server address behind any intermediaries, for example proxies, if it's available.
"""
Language SIGs are expected to create Jinja templates specific to their language. Code-generation usually involves several steps which could be semi-automated:
- Manually update the Semantic Conventions version when necessary
- Add the new Schema URL to the list of supported versions
- If it's not automated, then it can, at least, be automatically checked.
- Check out (or download) this version of Semantic Conventions
- Run code-generation script for each template
- Fix lint violations in the auto-generated code (if any)
- Send the PR with new code to the corresponding repository
Here're the examples of how steps 2-5 are implemented for Java and Python.