Segment.io is a single, simple integration that gives you access to 70+ analytics and marketing tools with the flick of a switch
Questions tagged [segment-io]
65 questions
0
votes
2 answers
How to mock kafka dependencies and writer in Golang?
I have a struct
type Server struct {
grpcServerPort int
grpcServer *grpc.Server
writer *kafka.Writer
}
this Server has lot of methods including -
func NewServer(port int) *Server {
server := &Server{
grpcServerPort:…

Ashutosh Pandey
- 120
- 8
0
votes
0 answers
kafka python not receiving message from golang producer
I am publishing messages via golang using segmentio-go. And I want to read those message using python for which I tried kafka-python, pykafka.
In all these libraries, I cannot receive the message, I am able to read the messages when reading it from…
0
votes
1 answer
How to properly set OneSignal as a destination in Segment (segment.com), and also how to set external user ID of OneSignal through Segment
I am trying to implement Segment tag management system (segment.com) in my react native app. I have successfully implemented it with source as RN app, and destinations like Voucherify and Firebase Analytics. I had previously implemented OneSignal…

Jayant Joseph
- 62
- 9
0
votes
0 answers
Problem merging Branch.io and Segment.io user's attribution data on Amplitude
my company has an app developed using Ionic, and we use the JS version of the Segment library.
npm package ngx-segment-analytics
I'm trying to integrate attribution data on Amplitude, my data flow looks like this:
Facebook -> (MMP) Branch.io ->…

felipeclopes
- 4,010
- 2
- 25
- 35
0
votes
1 answer
Amplitude & Segment.io - Saas product analytics - How to get all users
if I want to calculate the % of active users for my product. I need the total amount of users for each day. How can I achieve this with Segment.io and Amplitude?
Do I need to send an event every day with the number of all users?

Cyran
- 15
- 3
0
votes
2 answers
How to add array of text and images in Segmentio in swift
I am using segmentio pod for segment with image and text, I have added pod in project and added view in storyboard and assign Segmentio class name and import Segmentio.
Here how to add array of text and images in segmentio
i have tried like below:
…

Swift
- 1,074
- 12
- 46
0
votes
1 answer
Why isn't my Kafka load being balanced among brokers?
I have a consumer group reading from a topic with ten partitions:
[root@kafka01 kafka]# ./bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group ssIncomingGroup --describe
GROUP TOPIC PARTITION CURRENT-OFFSET …

Ken - Enough about Monica
- 1,595
- 4
- 21
- 50
0
votes
0 answers
Golang Kafka Reader cannot read messages from a topic
I have a Kafka ConsumerGroup (Golang/Segmentio) with one reader. The reader is unable to read messages from a topic but I am able to create a writer in the same piece of code and write to the topic from which the reader is unable to read from.
Below…

vimo
- 1
- 1
0
votes
1 answer
Send HTTP POST request to Segment.io from GCP
I am trying to send HTTPS Post Request from GCP to Segment.io
I want to create a service that will read data from BigQuery table and then send calls directly to Segment.io API (link) from where I'll redirect the data to other destinations, but on…

ManeVane
- 3
- 1
0
votes
1 answer
Setting up Segment.io
I have recently finished building a website on Webflow and I am looking to integrate Segment.io onto my website to connect with different destinations. I haven't been able to figure out how I could go onto collecting event and identity data into…

TheChasers
- 65
- 2
- 12
0
votes
2 answers
How we can write single message(not batch) fast in kafka?
I am new to Golang and Kafka and I am using segmentio kafka-go to connect to Kafka server using Golang. As of now I want to push every event of user in Kafka, so I want to push single message(and not in batch), but since the write operation provided…

Suraj Singh
- 3
- 1
- 3
0
votes
0 answers
What code should I add (and where) on my website to track events/identify users on my website using segment.com?
I want to configure segment.com properly on my site and use it to manage all other apps/tools. I already installed the segment javascript on my site and used it as the source. Now, I am pushing these to MixPanel, Facebook, Google Analytics,…

aylim14
- 49
- 1
- 8
0
votes
1 answer
Prevent `document.execCommand("copy")` from replacing ampersands
I have a tool which generates URLs, and a button for copying the generated URL to the clipboard. This function does successfully copy my URL:
function copyUrlToClipboard() {
var $temp = $("");
$("body").append($temp);
…

jpriebe
- 824
- 7
- 13
0
votes
1 answer
SegmentIO analytics - Adding JSONObject inside properties
I am trying to add JSONObject inside properties of segmentIO analytics but it is showing json as String on server.
Here is my code:
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("abc", "xyz");
properties.putValue("extras",…

Prashant Kedia
- 318
- 5
- 14
0
votes
1 answer
Device token not being set
Has anyone ever had a problem using Segment analytics SDK integrated with Mixpanel (cloud settings only, no Mixpanel SDK integrated)?
I'm registering the device token for push notification using the…

CainaSouza
- 1,417
- 2
- 16
- 31