Questions tagged [segment-io]

Segment.io is a single, simple integration that gives you access to 70+ analytics and marketing tools with the flick of a switch

65 questions
3
votes
4 answers

Getting error when adding Segment iOS framework manually

I'm trying to add segmentio iOS framework manually in my app. When I build the project, its ended with following error, "Undefined symbols for architecture i386" and logs. Undefined symbols for architecture i386: "_OBJC_CLASS_$_Amplitude",…
Hemang
  • 26,840
  • 19
  • 119
  • 186
2
votes
0 answers

segmentio/kafka-go Offset Output out of range: requested offset is outside the range offsets maintained by the server for the given topic\partition

I use segmentio/kafka-go (v0.4.40) to work with kafka. reader := kafka.NewReader(kafka.ReaderConfig{ Brokers: []string{broker}, GroupTopics: []string{topic}, GroupID: "group", MinBytes: cfg.MinBytes, …
Violetta
  • 509
  • 4
  • 12
2
votes
0 answers

How to pass common data (region, currency, language) to segment.io using analytics.js

For some background, we're integrating with https://segment.com/docs/ on our e-commerce site. Our site currently has 3 regions (US, CA and UK). The region is identified by different url paths, (e.g. /* (US), /ca/* (CA), /uk/* (UK)). We define a…
Richard Scarrott
  • 6,638
  • 1
  • 35
  • 46
2
votes
0 answers

Segment trackEvent doesn't work right after CodePush update installs

Our React Native project has both Segment and CodePush integrated. Segment works fine, normally. But there's a scenario where Segment stops working right after a CodePush update has been installed. Nothing gets flushed out and none of the events are…
2
votes
1 answer

Adding Segment Analytics to VueJS

I am trying to add Segment-Analytics to a VueJS app but currently, no data is being sent. I think the issue is where I am including Segment's snippet. I have so far pasted into the tag of public.html, but I have seen other methods. I am trying to…
user2799827
  • 1,077
  • 3
  • 18
  • 54
2
votes
1 answer

JAVASCRIPT: How to track and log user events on a website(like Google Analytics)

I want to create an application like Google Analytics. I have taken Analytics.js code from Segment(open source analytics application Segment.com) which contains all the in-built functions to track User Events. I have also added async code to load…
2
votes
1 answer

webpack, process env variable in index.html

I have a react app which has an entrypoint of my app.jsx and I am adding segment.io to my build, however I would like to set it's API key as an process.env variable. I am having trouble with how to do this with webpack because my entry point is not…
ajmajmajma
  • 13,712
  • 24
  • 79
  • 133
2
votes
2 answers

Issues with SegmentIO open source version setup of analytics.js

I am switching from SegmentIO to their open source version. I used this blog post as a guide but it's not tracking. Anyone see issue with this code: window.analytics || (window.analytics = []); window.analytics.methods = ['identify', 'track',…
cyberwombat
  • 38,105
  • 35
  • 175
  • 251
2
votes
1 answer

segment.io together with another google analytics tracking code

Is it possible to use segment.io with one classic google analytics tracking code concurrently with an extra universal google analytics tracking code(not integrated in segment.io) on the same page? Thank you,
glasspill
  • 1,290
  • 4
  • 21
  • 36
1
vote
0 answers

segmentio/kafka-go writer why it hold connection after stop sending messages

I have a problem with my writer. I see in tcpdump that it send calls to kafka even I don't send messages to it. May be somebode already resolve this? This is code for connection, send and close: package kafka import ( "chrome-grabber/config" …
1
vote
1 answer

segmentio/kafka-go reader client not subscribing to the topic and partition

The reader client is not starting to consume messages. This is happening intermittently, in most cases it happens when there are no messages in the topic. Kafka Version Apache Kafka 3.3.0 kafka-go version v0.4.38 Resources to reproduce the…
mohit
  • 2,325
  • 23
  • 48
1
vote
1 answer

Cannot read from beginning of topic using segmentio/kafka-go

I am unable to read from the beginning of a topic using kafka-go. Here's how I create the reader: reader := kafka.NewReader(kafka.ReaderConfig{ Brokers: []string{"127.0.0.1:9092"}, GroupID: "my-group-id", Topic: …
user2233706
  • 6,148
  • 5
  • 44
  • 86
1
vote
0 answers

Use segment appsflyer package to the flutter app

I am trying to use this: https://segment.com/docs/connections/destinations/catalog/appsflyer/ to my flutter app, they have an option for iOS and Android but not for flutter, can anyone help me here
Dheeraj Agrawal
  • 2,347
  • 11
  • 46
  • 63
1
vote
0 answers

Tying Google Analytics conversion metric to Google Optimize experiment through segment

We are running an A/B testing experiment through Google Optimize where the PRIMARY OBJECTIVE is a Google Analytics Goal: What we are measuring is how many users trigger a custom Signup request event, with certain UTM properties. The conversion…
elethan
  • 16,408
  • 8
  • 64
  • 87
1
vote
1 answer

Why does not react-native-link work for `@segment/analytics-react-native` library?

I am trying to link the @segment/analytics-react-native library in my iOs react-native project. I followed these two steps given in their docs. yarn add @segment/analytics-react-native yarn react-native link However the yarn react-native link step…
Kaushik
  • 921
  • 10
  • 18