Add OpenTelemetry forwarder infrastructure#9136
Merged
Conversation
- Add OpenTelemetry.OutOfProcess.Forwarder.Configuration 0.1.0-beta.1 package version - Add ENABLE_OTEL conditional compilation: when set, adds package reference and defines BUILDING_OTEL preprocessor symbol - Set ENABLE_OTEL in generate-dev-sln.ps1 for dev builds - Fix missing newline at end of generate-dev-sln.ps1
wiktork
reviewed
Mar 30, 2026
wiktork
reviewed
Mar 30, 2026
Address review feedback: remove ENABLE_OTEL gating so the package is always referenced and BUILDING_OTEL is always defined, avoiding the need for two separate builds.
9fe18aa to
f52f7cd
Compare
wiktork
approved these changes
Apr 20, 2026
wiktork
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the infrastructure for OpenTelemetry out-of-process forwarder integration. This is PR 1 of 6 see #9135 for the full feature overview.
Changes
OpenTelemetry.OutOfProcess.Forwarder.Configuration0.1.0-beta.1 package versionBUILDING_OTELpreprocessor define, both gated onENABLE_OTELMSBuild propertyENABLE_OTEL=truefor dev builds; fix missing newline at EOFHow it works
When
ENABLE_OTELis set (to any non-empty value), the build:OpenTelemetry.OutOfProcess.Forwarder.ConfigurationBUILDING_OTELconstant for conditional compilationAll subsequent OTel code will be guarded with
#if BUILDING_OTEL, ensuring zero impact on the default build.Testing
ENABLE_OTEL: no change in behavior, package not referencedENABLE_OTEL=true: package restored,BUILDING_OTELdefined