GitHub Repository
View the Go SDK source code and releases
Setup the SDK
1
Install the SDK
via the Or, add a dependency on the most recent version of the SDK in go.mod:See the Releases tab in GitHub for the latest versions.
go get
CLI:2
Initialize the SDK
After installation, you will need to initialize the SDK using a Server Secret Key from the Statsig console.
Do NOT embed your Server Secret Key in client-side applications, or expose it in any external-facing documents. However, if you accidentally expose it, you can create a new one in the Statsig console.
initialize
will perform a network request. After initialize
completes, virtually all SDK operations will be synchronous (See Evaluating Feature Gates in the Statsig SDK). The SDK will fetch updates from Statsig in the background, independently of your API calls.Working with the SDK
Checking a Feature Flag/Gate
Now that your SDK is initialized, let’s fetch a Feature Gate. Feature Gates can be used to create logic branches in code that can be rolled out to different users from the Statsig Console. Gates are always CLOSED or OFF (thinkreturn false;
) by default. From this point on, all APIs will require you to specify the user (see Statsig user) associated with the request. For example, check a gate for a certain user like this: Retrieving Feature Gate Metadata
In certain scenarios, you may need more information about a gate evaluation than just a boolean value. For additional metadata about the evaluation, use the Get Feature Gate API, which returns a FeatureGate object:Reading a Dynamic Config
Feature Gates can be very useful for simple on/off switches, with optional but advanced user targeting. However, if you want to be able send a different set of values (strings, numbers, and etc.) to your clients based on specific user attributes, e.g. country, Dynamic Configs can help you with that. The API is very similar to Feature Gates, but you get an entire json object you can configure on the server and you can fetch typed parameters from it.Getting a Layer/Experiment
Then we have Layers/Experiments, which you can use to run A/B/n experiments. We offer two APIs, but we recommend the use of layers to enable quicker iterations with parameter reuse.Logging an Event
Now that you have a Feature Gate or an Experiment set up, you may want to track some custom events and see how your new features or different experiment groups affect these events. This is super easy with Statsig - simply call the Log Event API and specify the user and event name to log; you additionally provide some value and/or an object of metadata to be logged together with the event:Statsig User
When calling APIs that require a user, you should pass as much information as possible in order to take advantage of advanced gate and config conditions (like country or OS/browser level checks), and correctly measure impact of your experiments on your metrics/events. At least one identifier, either userID or a Custom ID, is required to provide a consistent experience for a given user (as explained here). BesidesuserID
, we also have email
, ip
, userAgent
, country
, locale
and appVersion
as top-level fields on StatsigUser. In addition, you can pass any key-value pairs in an object/dictionary to the custom
field and be able to create targeting based on them. Note that while typing is lenient on the StatsigUser
object to allow you to pass in numbers, strings, arrays, objects, and potentially even enums or classes, the evaluation operators will only be able to operate on primitive types - mostly strings and numbers. While we attempt to smartly cast custom field types to match the operator, we cannot guarantee evaluation results for other types. For example, setting an array as a custom field will only ever be compared as a string - there is no operator to match a value in that array. Private Attributes
Have sensitive user PII data that should not be logged? No problem, we have a solution for it! On the StatsigUser object we also have a field calledprivateAttributes
, which is a simple object/dictionary that you can use to set private user attributes. Any attribute set in privateAttributes
will only be used for evaluation/targeting, and removed from any logs before they are sent to Statsig server. For example, if you have feature gates that should only pass for users with emails ending in “@statsig.com”, but do not want to log your users’ email addresses to Statsig, you can simply add the key-value pair { email: "my_user@statsig.com" }
to privateAttributes
on the user and that’s it! Statsig Options
initialize()
takes an optional parameter options
in addition to the secret key that you can provide to customize the Statsig client. Here are the current options and we are always adding more to the list: You can specify optional parameters with options
when initializing using InitializeWithOptions()
- Environment: default nil
- An object you can use to set environment variables that apply to all of your users in the same session and will be used for targeting purposes.
- The most common usage is to set the environment tier (string), and have feature gates pass/fail for specific environments. The accepted values are “production”, “staging” and “development”.
- LocalMode: default false
- Restricts the SDK to not issue any network requests and only respond with default values (or local overrides)
- ConfigSyncInterval: default 10 seconds
- The interval to poll for gate/experiment/config changes.
- IDListSyncInterval: default 1 minute
- The interval to poll for ID list changes.
- BootstrapValues: default nil
- A string that represents all rules for all feature gates, dynamic configs and experiments. It can be provided to bootstrap the Statsig server SDK at initialization in case your server runs into network issue or Statsig server is down temporarily.
- RulesUpdatedCallback: default nil
- The callback that gets invoked whenever the rulesets are updated. It’s called with a JSON string that represents the rulesets, and a timestamp for when the rules were updated.
- UserPersistentStorage: IUserPersistentStorage default nil
- A persistent storage adapter for running sticky experiments.
- DisableIdList: default false
- A flag to disable fetching the id list during initialization and background polling for both network and data adapter.
Client Initialize Response Options
When usinggetClientInitializeResponse()
, you can specify additional options through the GCIROptions
struct: - IncludeLocalOverrides: default false
- When set to true, local overrides will be included in the client initialize response.
- This allows you to test local changes to configurations without affecting other users.
- Useful for development and testing environments.
- ClientKey: default empty string
- The client SDK key to use for the initialize response.
- This key is used to identify the client application and determine which configurations it should receive.
- Required when generating a client initialize response for client SDKs.
- TargetAppID: default empty string
- Specifies a target application ID to filter configurations (feature gates, dynamic configs, experiments, and layers).
- When specified, the SDK will only return configurations that are targeted to this application ID.
- This is useful in multi-tenant or multi-application environments where you want to ensure that only configurations relevant to a specific application are evaluated and returned.
- If not specified, the SDK will attempt to determine the target app ID from the provided client key.
- HashAlgorithm: default empty string
- Specifies the hashing algorithm to use for generating stable IDs in the client.
- Common values include “djb2” (default if not specified) and “sha256”.
- This should match the hashing algorithm used by the client SDK.
- IncludeConfigType: default false (deprecated)
- When set to true, the type of each configuration will be included in the response.
- This allows clients to differentiate between different types of configurations (e.g., feature gates, dynamic configs, experiments).
- Note: This option is deprecated and may be removed in future versions.
- ConfigTypesToInclude: default empty array
- An array of configuration types to include in the response.
- If specified, only configurations of the specified types will be included.
- Possible values include FeatureGateType, DynamicConfigType, ExperimentType, and LayerType.
- If empty, all configuration types will be included (subject to other filtering options).
Shutdown
To gracefully shutdown the SDK and ensure all events are flushed:Local Overrides
You can override the values returned by the SDK for testing purposes. This can be useful for local development when you want to test specific scenarios.Client SDK Bootstrapping
The Statsig server SDK can be used to generate the initialization values for a client SDK. This is useful for server-side rendering (SSR) or when you want to pre-fetch values for a client.Data Store
A data store can be used to synchronize the configuration/value downloads across multiple SDK instances, and to bootstrap the SDK in offline environments.Interface
Example Implementation
User Persistent Storage
User Persistent Storage is a storage adapter for running sticky experiments. It allows you to persist user assignments across sessions.Interface
Example Implementation
Multi-Instance Usage
If you need to create multiple independent instances of the Statsig SDK (for example, to use different API keys or configurations), you can use the instance-based approach:FAQ
How do I run experiments for logged out users?
See the guide on device level experimentsHow can I mock Statsig in tests
We recommend using the Local Override APIs in v1.3.0+, in combination with theLocalMode
option in StatsigOptions
to force gate/config values in test environments and remove network access to statsig servers. For example: