Add OpenTelemetry forwarder infrastructure#9136
Open
rajkumar-rangaraj wants to merge 4 commits intomainfrom
Open
Add OpenTelemetry forwarder infrastructure#9136rajkumar-rangaraj wants to merge 4 commits intomainfrom
rajkumar-rangaraj wants to merge 4 commits intomainfrom
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
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(ENABLE_OTEL)' != ''"> | ||
| <PackageReference Include="OpenTelemetry.OutOfProcess.Forwarder.Configuration" /> |
Member
There was a problem hiding this comment.
How large is this package and its dependencies? If it's not very big, maybe we can reference it unconditionally.
Author
Member
There was a problem hiding this comment.
Let's just add these unconditionally then. Otherwise, we'll have to have two builds. We may need to add this package to the central feed.
Author
There was a problem hiding this comment.
Updated the PR to reference the package unconditionally and removed the ENABLE_OTEL gating.
Regarding the central feed, I may not have access to add the package there. Could you help with that, or point me to who can?
wiktork
reviewed
Mar 30, 2026
| <PackageReference Include="OpenTelemetry.OutOfProcess.Forwarder.Configuration" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(DIAGNOSTICS_REPO_ROOT)' == ''"> |
Member
There was a problem hiding this comment.
I want to confirm the target branch of .NET 10+. You will not need this in 8 or 9 correct?
Author
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
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