jitsucom / jitsu

Jitsu is an open-source Segment alternative. Fully-scriptable data ingestion engine for modern data teams. Set-up a real-time data pipeline in minutes, not days
https://jitsu.com
MIT License
4.04k stars 287 forks source link

Source not found error #1065

Closed teenwolf99 closed 10 months ago

teenwolf99 commented 10 months ago

We are running jitsu via docker-compose file following the quick start guide. Once everything is setup and running we are able to get the data via HTTP API using the curl command.

But we are not getting any data when integrating to the site in jitsu. We are getting below error message,

"error": "Source not found for {\"ingestType\":\"browser\",\"domain\":\"example.com\"}"

Below is the docker file used,

version: "3.8" services: redis: tty: true image: redis:6.2-alpine restart: "unless-stopped" ports:

networks: jitsu: name: jitsu

Need Suggestions/Fixes on this.

vklimontovich commented 10 months ago

How to you send the data to Jitsu. Where example.com from the error message is coming from?

teenwolf99 commented 10 months ago

@vklimontovich This is how we are send the data to jitsu.

image
vklimontovich commented 10 months ago

I believe you should change example.com to an actual domain where you have Jitsu deployed

teenwolf99 commented 10 months ago

@vklimontovich I forgot to mention that example.com is not the actual domain we have used in the configuration. We are using a actual domain in the original configuration, but due to privacy of the domain we have masked it to example.com here in GitHub issue post. So we don't have problems with domain name here.