Closed teenwolf99 closed 12 months ago
How to you send the data to Jitsu. Where example.com
from the error message is coming from?
@vklimontovich This is how we are send the data to jitsu.
I believe you should change example.com
to an actual domain where you have Jitsu deployed
@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.
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:
ports:
- "19092:19092"
- "19093:19093"
environment: TERM: "xterm-256color" KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_LISTENERS: INTERNAL://0.0.0.0:19093,OUTSIDE://0.0.0.0:19092 KAFKA_ADVERTISED_LISTENERS: INTERNAL://kafka:19093,OUTSIDE://localhost:19092 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL:PLAINTEXT,OUTSIDE:PLAINTEXT KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL healthcheck: test: ["CMD-SHELL", "kafka-topics.sh --bootstrap-server 127.0.0.1:19092 --describe"] interval: 5s timeout: 3s retries: 30 networks:
networks: jitsu: name: jitsu
Need Suggestions/Fixes on this.