-
Notifications
You must be signed in to change notification settings - Fork 167
feat(feature-flags): wire source-agnostic activation and OpenFeature InitializeAsync #9044
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
Open
pavlokhrebto
wants to merge
8
commits into
pavlo.khrebto/EX-2703/ffe-agentless-poller
from
pavlo.khrebto/EX-2703/ffe-module-wiring
Open
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
27405d1
feat(feature-flags): wire source-agnostic activation and InitializeAs…
pavlokhrebto 2a4aa18
feat(feature-flags): add OpenFeature InitializeAsync CallTarget instr…
pavlokhrebto 12c02c8
test(feature-flags): add FeatureFlagsModuleTests for activation, Init…
pavlokhrebto 9534361
fix(feature-flags): add missing using directives for Task and Cancell…
pavlokhrebto 43f99d9
fix(feature-flags): commit regenerated native calltarget definitions …
pavlokhrebto fe0081c
Merge branch 'pavlo.khrebto/EX-2703/ffe-agentless-poller' of github.c…
pavlokhrebto 613a808
fix(feature-flags): make ExposureApi construction lazy to avoid eager…
pavlokhrebto 809f0bd
fix(feature-flags): remove unused locals, defer RC subscription, and …
pavlokhrebto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
52 changes: 52 additions & 0 deletions
52
...rumentation/ManualInstrumentation/OpenFeature/OpenFeatureSdkInitializeAsyncIntegration.cs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| // <copyright file="OpenFeatureSdkInitializeAsyncIntegration.cs" company="Datadog"> | ||
| // Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License. | ||
| // This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc. | ||
| // </copyright> | ||
| #nullable enable | ||
|
|
||
| using System; | ||
| using System.ComponentModel; | ||
| using System.Threading; | ||
| using System.Threading.Tasks; | ||
| using Datadog.Trace.ClrProfiler.CallTarget; | ||
| using Datadog.Trace.Configuration; | ||
|
|
||
| namespace Datadog.Trace.ClrProfiler.AutoInstrumentation.ManualInstrumentation.OpenFeature; | ||
|
|
||
| /// <summary> | ||
| /// System.Threading.Tasks.Task Datadog.FeatureFlags.OpenFeature.FeatureFlagsSdk::InitializeAsync(System.Threading.CancellationToken) calltarget instrumentation | ||
| /// </summary> | ||
| [InstrumentMethod( | ||
| AssemblyName = "Datadog.FeatureFlags.OpenFeature", | ||
| TypeName = "Datadog.FeatureFlags.OpenFeature.FeatureFlagsSdk", | ||
| MethodName = "InitializeAsync", | ||
| ReturnTypeName = ClrNames.Task, | ||
| ParameterTypeNames = [ClrNames.CancellationToken], | ||
| MinimumVersion = "2.0.0", | ||
| MaximumVersion = "2.*.*", | ||
| IntegrationName = nameof(IntegrationId.OpenFeature))] | ||
| [Browsable(false)] | ||
| [EditorBrowsable(EditorBrowsableState.Never)] | ||
| public sealed class OpenFeatureSdkInitializeAsyncIntegration | ||
| { | ||
| internal static CallTargetState OnMethodBegin<TTarget>(ref CancellationToken cancellationToken) | ||
| => new CallTargetState(scope: null, state: cancellationToken); | ||
|
|
||
| internal static CallTargetReturn<Task> OnMethodEnd<TTarget>(Task returnValue, Exception? exception, in CallTargetState state) | ||
| { | ||
| if (exception is not null) | ||
| { | ||
| return new CallTargetReturn<Task>(returnValue); | ||
| } | ||
|
|
||
| // Delivery only starts here, because requesting configuration is billable, and the tracer | ||
| // must not start until application code adopts the provider. | ||
| if (TracerManager.Instance.FeatureFlags is { } featureFlags) | ||
| { | ||
| var cancellationToken = state.State is CancellationToken token ? token : default; | ||
| return new CallTargetReturn<Task>(featureFlags.InitializeAsync(cancellationToken)); | ||
| } | ||
|
|
||
| return new CallTargetReturn<Task>(returnValue); | ||
| } | ||
| } |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.