![]() |
VOOZH | about |
dotnet add package OpenFeature.Providers.GOFeatureFlag --version 1.1.0
NuGet\Install-Package OpenFeature.Providers.GOFeatureFlag -Version 1.1.0
<PackageReference Include="OpenFeature.Providers.GOFeatureFlag" Version="1.1.0" />
<PackageVersion Include="OpenFeature.Providers.GOFeatureFlag" Version="1.1.0" />Directory.Packages.props
<PackageReference Include="OpenFeature.Providers.GOFeatureFlag" />Project file
paket add OpenFeature.Providers.GOFeatureFlag --version 1.1.0
#r "nuget: OpenFeature.Providers.GOFeatureFlag, 1.1.0"
#:package OpenFeature.Providers.GOFeatureFlag@1.1.0
#addin nuget:?package=OpenFeature.Providers.GOFeatureFlag&version=1.1.0Install as a Cake Addin
#tool nuget:?package=OpenFeature.Providers.GOFeatureFlag&version=1.1.0Install as a Cake Tool
This version of the provider requires to use GO Feature Flag relay-proxy v1.45.0 or above.
If you have an older version of the relay-proxy, please use the version the package OpenFeature.Contrib.Providers.GOFeatureFlag in version 0.2.1 to get the right provider.
This is the official OpenFeature .NET provider for accessing your feature flags with GO Feature Flag.
In conjuction with the OpenFeature SDK you will be able to evaluate your feature flags in your .NET applications.
For documentation related to flags management in GO Feature Flag, refer to the GO Feature Flag documentation website.
dotnet add package OpenFeature.Providers.GOFeatureFlag
NuGet\Install-Package OpenFeature.Providers.GOFeatureFlag
<PackageReference Include="OpenFeature.Providers.GOFeatureFlag" />
paket add OpenFeature.Providers.GOFeatureFlag
// Install OpenFeature.Providers.GOFeatureFlag as a Cake Addin
#addin nuget:?package=OpenFeature.Providers.GOFeatureFlag
// Install OpenFeature.Providers.GOFeatureFlag as a Cake Tool
#tool nuget:?package=OpenFeature.Providers.GOFeatureFlag
```[GoFeatureFlagProviderOptions.cs](GoFeatureFlagProviderOptions.cs)
## Getting started
### Initialize the provider
GO Feature Flag provider needs to be created and then set in the global OpenFeatureAPI.
The only required option to create a `GoFeatureFlagProvider` is the endpoint to your GO Feature Flag relay-proxy
instance.
```csharp
using OpenFeature.Providers.GOFeatureFlag;
var options = new GoFeatureFlagProviderOptions { Endpoint = "https://gofeatureflag.example.com" };
var provider = new GoFeatureFlagProvider(options);
// Associate the provider with the OpenFeature API
await Api.Instance.SetProviderAsync("client_test", provider);
// Create a client to perform feature flag evaluations
var client = Api.Instance.GetClient("client_test");
// targetingKey is mandatory for each evaluation
var evaluationContext = EvaluationContext.Builder()
.SetTargetingKey("d45e303a-38c2-11ed-a261-0242ac120002")
.Set("email", "john.doe@gofeatureflag.org")
.Build();
// Example of a boolean flag evaluation
var myFeatureFlag = await client.GetBooleanDetailsAsync("my-feature-flag", false, evaluationContext);
The evaluation context is the way for the client to specify contextual data that GO Feature Flag uses to evaluate the feature flags, it allows to define rules on the flag.
The targetingKey is mandatory for GO Feature Flag in order to evaluate the feature flag, it could be the id of a user,
a session ID or anything you find relevant to use as identifier during the evaluation.
You can configure the provider with several options to customize its behavior. The following options are available:
| name | mandatory | Description |
|---|---|---|
Endpoint |
true |
endpoint contains the DNS of your GO Feature Flag relay proxy (ex: https://mydomain.com/gofeatureflagproxy/) |
EvaluationType |
false |
evaluationType is the type of evaluation you want to use.<ul><li>If you want to have a local evaluation, you should use InProcess.</li><li>If you want to have an evaluation on the relay-proxy directly, you should use Remote.</li></ul>Default: InProcess<br/> |
Timeout |
false |
timeout in millisecond we are waiting when calling the relay proxy API. (default: 10000) |
ApiKey |
false |
If the relay proxy is configured to authenticate the requests, you should provide an API Key to the provider. Please ask the administrator of the relay proxy to provide an API Key. (default: null) |
FlushIntervalMs |
false |
interval time we publish statistics collection data to the proxy. The parameter is used only if the cache is enabled, otherwise the collection of the data is done directly when calling the evaluation API. default: 1000 ms |
MaxPendingEvents |
false |
max pending events aggregated before publishing for collection data to the proxy. When event is added while events collection is full, event is omitted. (default: 10000) |
DisableDataCollection |
false |
set to true if you don't want to collect the usage of flags retrieved in the cache. (default: false) |
ExporterMetadata |
false |
exporterMetadata is the metadata we send to the GO Feature Flag relay proxy when we report the evaluation data usage. |
EvaluationFlagList |
false |
If you are using in process evaluation, by default we will load in memory all the flags available in the relay proxy. If you want to limit the number of flags loaded in memory, you can use this parameter. By setting this parameter, you will only load the flags available in the list. <p>If null or empty, all the flags available in the relay proxy will be loaded.</p> |
FlagChangePollingIntervalMs |
false |
interval time we poll the proxy to check if the configuration has changed. It is used for the in process evaluation to check if we should refresh our internal cache. default: 120000 |
The OpenFeature client is used to retrieve values for the current EvaluationContext. For example, retrieving a boolean
value for the flag "my-flag":
var client = Api.Instance.GetClient("client_test");
var myFeatureFlag = await client.GetBooleanValueAsync("my-feature-flag", false, evaluationContext);
GO Feature Flag supports different all OpenFeature supported types of feature flags, it means that you can use all the accessor directly
// Boolean
client.GetBooleanValueAsync("my-flag", false, evaluationContext);
// String
client.GetStringValueAsync("my-flag", "default", evaluationContext);
// Integer
client.GetIntegerValueAsync("my-flag", 1, evaluationContext);
// Double
client.GetDoubleValueAsync("my-flag", 1.1, evaluationContext);
// Object
client.GetObjectValueAsync("my-flag", new Value("any value you want"), evaluationContext);
When the provider is configured to use in process evaluation, it will fetch the flag configuration from the GO Feature Flag relay-proxy API and evaluate the flags directly in the provider.
The evaluation is done inside the provider using a webassembly module that is compiled from the GO Feature Flag source
code.
The wasm module is used to evaluate the flags, and the source code is available in
the thomaspoignant/go-feature-flag repository.
The provider will call the GO Feature Flag relay-proxy API to fetch the flag configuration and then evaluate the flags
using the wasm module.
When the provider is configured to use remote evaluation, it will call the GO Feature Flag relay-proxy for each flag evaluation.
It will perform an HTTP request to the GO Feature Flag relay-proxy API with the flag name and the evaluation context for each flag evaluation.
To be able to use the GO Feature Flag provider using the In Process mode, you need to use .NET Core SDK 3.0 SDK or later. If you are using an older version of the .NET Framework, you will only be able to use the remote evaluation mode.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on OpenFeature.Providers.GOFeatureFlag:
| Package | Downloads |
|---|---|
|
CommunityToolkit.Aspire.GoFeatureFlag
A GO Feature Flag client that integrates with Aspire, including health checks, logging, and telemetry. |
Showing the top 1 popular GitHub repositories that depend on OpenFeature.Providers.GOFeatureFlag:
| Repository | Stars |
|---|---|
|
CommunityToolkit/Aspire
A community project with additional components and extensions for Aspire
|