analytics-go
analytics-go copied to clipboard
Segment analytics client for Go
Is it possible to add context in OnSuccess and OnFailure callbacks for proper span tracing?
https://github.com/segmentio/analytics-go/blob/30e6f7a7ae3d5a98f960c3f6464d968e73cc47eb/properties.go#L114 Shouldn't it be "json:"**sku**,omitempty""?
There is a small issue in the versioning of this repo causing go mod to think it incompatible with versioning. If you look [here in the godocs](https://pkg.go.dev/github.com/segmentio/[email protected]+incompatible?tab=versions) you can see...
Up until last night it appears v3.1.0 was mirrored to gopkg.in and that worked. But as of this morning it is picking up v3.2.1 and that doesn't load. There are...
Line 14: ``` go get https://github.com/segmentio/analytics-go ``` Should be: ``` go get github.com/segmentio/analytics-go ```
This helps guarantee that all requests are made when the quit signal is received. The previous `wg.Done()` did nothing since it was deferred.
Using `analytics-go.v3`. The `Client` interface has a comment that outlines the client setup: ```go // client := analytics.New(writeKey) // ... // client.Enqueue(analytics.Track{ ... }) // ... // client.Close() ``` I'm...
Make sure that even when response status is
The http.Do function documentation states that: ``` // If the returned error is nil, the Response will contain a non-nil // Body which the user is expected to close. If...
Library hasn't been released for a very long time and released version with vendoring seems to be failing to build with latest go (vendored dependencies to be specific)