-
Notifications
You must be signed in to change notification settings - Fork 6
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
niko/go-sdk-docs #553
Open
nikomancy
wants to merge
7
commits into
main
Choose a base branch
from
niko/go-to-new-template
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,012
−0
Open
niko/go-sdk-docs #553
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
58258ca
Adding Go SDK docs.
nikomancy 0faed70
Update docs/sdks/server-sdks/go/quickstart.mdx
nikomancy d89d708
Update docs/sdks/server-sdks/go/quickstart.mdx
nikomancy 86c59ac
Update docs/sdks/server-sdks/go/quickstart.mdx
nikomancy 3498c18
Update docs/sdks/server-sdks/go/bandits.mdx
nikomancy 0e473c5
Update docs/sdks/server-sdks/go/bandits.mdx
nikomancy 1164202
Update docs/sdks/server-sdks/go/bandits.mdx
nikomancy 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 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,4 @@ | ||
{ | ||
"label": "Go", | ||
"position": 4 | ||
} |
This file contains 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,331 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
title: Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sidebar_position: 4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import Tabs from '@theme/Tabs'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import TabItem from '@theme/TabItem'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import ApiOptionRef from '@site/src/components/ApiOptionRef'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Assignments are the mechanism through which a given [Subject](/sdks/sdk-features/subjects) is assigned to a variation for a feature flag or experiment. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The Eppo SDK supports the following assignment types: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Boolean | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- JSON | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Integer | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Float | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Assignment Types | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### String Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
String assignments return a string value that is set as the variation. String flags are the most common type of flags and are useful for both A/B/n tests and advanced targeting use cases. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/eppo-exp/golang-sdk/v6/eppoclient" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes := map[string]interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"country": user.Country, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"age": 30, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
variation, err := client.GetStringAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"flag-key-123", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"control", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Error getting assignment: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch variation { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case "version-a": | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
handleVersionA() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case "version-b": | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
handleVersionB() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
handleControl() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### Boolean Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Boolean flags support simple on/off toggles. They're useful for simple, binary feature switches like blue/green deployments or enabling/disabling a new feature. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enabled, err := client.GetBooleanAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"new-feature", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
false, // default value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Error getting assignment: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if enabled { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
handleFeatureEnabled() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
handleFeatureDisabled() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### JSON Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
JSON flags work best for advanced configuration use cases. The JSON flag can include structured information such as: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Marketing copy for a promotional campaign | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Configuration parameters for a feature | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- UI customization settings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultCampaign := map[string]interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"hero": false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"hero_image": "placeholder.png", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"hero_title": "Placeholder Hero Title", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"hero_description": "Placeholder Hero Description", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
campaignConfig, err := client.GetJSONAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"campaign-config", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultCampaign, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Error getting assignment: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// You can also get the raw JSON bytes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
campaignBytes, err := client.GetJSONBytesAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"campaign-config", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultCampaignBytes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### Numeric Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The SDK provides both integer and floating-point numeric assignments. These are useful for testing different numeric values like: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Price points | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Number of items to display | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Timeout durations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Integer assignment | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
numItems, err := client.GetIntegerAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"items-to-show", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10, // default value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Float assignment | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
price, err := client.GetNumericAssignment( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"price-test", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subjectAttributes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9.99, // default value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Assignment Logging | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### Assignment Logger Schema | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The SDK will invoke the `LogAssignment` method with an `AssignmentEvent` struct that contains the following fields: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="Timestamp" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The time when the subject was assigned to the variation in ISO format. Example: `"2021-06-22T17:35:12.000Z"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="FeatureFlag" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
An Eppo feature flag key. Example: `"recommendation-algo"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="Allocation" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
An Eppo allocation key. Example: `"allocation-17"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="Experiment" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
An Eppo experiment key. Example: `"recommendation-algo-allocation-17"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="Subject" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
An identifier of the subject or user assigned to the experiment variation. Example: UUID | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="SubjectAttributes" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="map[string]interface{}" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue="nil" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
A map of metadata about the subject. These attributes are only logged if passed to the SDK assignment function. Example: `{"country": "US"}` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ApiOptionRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name="Variation" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type="string" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultValue='""' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The experiment variation the subject was assigned to. Example: `"control"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ApiOptionRef> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### Logging to Your Data Warehouse | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Eppo's architecture ensures that raw user data never leaves your system. Instead of pushing subject-level exposure events to Eppo's servers, Eppo's SDKs integrate with your existing logging system. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Here are examples of implementing the `IAssignmentLogger` interface for different logging systems: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Tabs> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<TabItem value="console" label="Console"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type ConsoleLogger struct{} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (l *ConsoleLogger) LogAssignment(event eppoclient.AssignmentEvent) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Assignment: %+v", event) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</TabItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<TabItem value="segment" label="Segment"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import "gopkg.in/segmentio/analytics-go.v3" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type SegmentLogger struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
client analytics.Client | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (l *SegmentLogger) LogAssignment(event eppoclient.AssignmentEvent) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return l.client.Enqueue(analytics.Track{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UserId: event.Subject, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Event: "Eppo Randomization Event", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Properties: analytics.Properties(event), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</TabItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<TabItem value="snowplow" label="Snowplow"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import "github.com/snowplow/snowplow-golang-tracker/v2/tracker" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type SnowplowLogger struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tracker *tracker.Tracker | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (l *SnowplowLogger) LogAssignment(event eppoclient.AssignmentEvent) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return l.tracker.TrackSelfDescribingEvent(tracker.SelfDescribingEvent{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Schema: "iglu:com.example_company/eppo-event/jsonschema/1-0-2", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Data: map[string]interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"userId": event.Subject, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"properties": event, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</TabItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</Tabs> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### Deduplicating Logs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
To prevent duplicate assignment events, you can implement caching in your logger: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type CachingLogger struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
wrapped eppoclient.IAssignmentLogger | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cache *lru.Cache | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func NewCachingLogger(wrapped eppoclient.IAssignmentLogger) *CachingLogger { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cache, _ := lru.New(1024) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return &CachingLogger{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
wrapped: wrapped, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cache: cache, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (l *CachingLogger) LogAssignment(event eppoclient.AssignmentEvent) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cacheKey := fmt.Sprintf("%s-%s", event.Subject, event.FeatureFlag) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if _, exists := l.cache.Get(cacheKey); exists { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
err := l.wrapped.LogAssignment(event) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
l.cache.Add(cacheKey, true) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+274
to
+298
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Go has caching loggers implemented. See go sdk readme for an example |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Debugging Assignments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The SDK provides detailed assignment information to help debug why a specific variation was chosen: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```go | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
evaluation, err := client.GetBooleanAssignmentDetails( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"kill-switch", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"test-subject", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
map[string]interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"country": "UK", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"age": 62, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Error getting assignment details: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Assignment: %s", evaluation.Variation) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
log.Printf("Details: %+v", evaluation.EvaluationDetails) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The evaluation details include: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Flag and subject information | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Timestamp and configuration metadata | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Allocation evaluation results | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Rule matching details | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Split calculations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
For more information on debugging assignments, see [Debugging Flag Assignments](/sdks/sdk-features/debugging-flag-assignment/). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+301
to
+331
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, it doesn't provide this feature
Suggested change
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing: