GO Feature Flag provider for .NET
$ dotnet add package OpenFeature.Providers.GOFeatureFlag[!WARNING] This version of the provider requires to use GO Feature Flag relay-proxy
v1.45.0or above. If you have an older version of the relay-proxy, please use the version the packageOpenFeature.Contrib.Providers.GOFeatureFlagin version0.2.1to 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.
|
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. If null or empty, all the flags available in the relay proxy will be loaded. |
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.