The data plane is RudderStack's core engine responsible for processing and routing the events.
Setup instructions
Based on the platform where you want to set up RudderStack, refer to the setup instructions:
Sending test events
Once you have installed RudderStack, follow the Sending Test Events guide to verify your installation.
FAQ
Do I need to sign up for an account to set up open source RudderStack?
Signing up for RudderStack Open Source is the easiest way to set up and manage your data pipelines. The web app is only used for source/destination configuration and does not have access to your data. It also provides a Live Events feature for debugging purposes, only for a limited time.
RudderStack does not persist any of your data.
However, if you do not wish to sign up for RudderStack and want to self-host the source/destination configurations, you can use the open source Control Plane Lite utility. To set up the RudderStack server (backend) in your own environment, follow the steps listed in the Setup instructions section for your preferred platform.
What is a data plane URL? Where do I get it?
For routing and processing the events to the RudderStack backend, a data plane URL is required.
If you're using open source RudderStack, you are required to set up your own data plane by installing and setting up RudderStack in your preferred environment.
http:localhost:8080
, where 8080
is the port where your RudderStack data plane is hosted.How to check the status of the data plane?
To check the status of your data plane, run the following command:
curl <DATA_PLANE_URL>/health
A sample command is shown below:
curl http://localhost:8080/health
You will see the following output:
{"server":"UP", "db":"UP","acceptingEvents":"TRUE","routingEvents":"TRUE","mode":"NORMAL","goroutines":"15364", "backendConfigMode": "API", "lastSync":"2020-12-01T04:20:33Z", "lastRegulationSync":"2020-11-30T21:40:27Z"}
The RudderStack server (backend) supports two running modes:
- Normal (
"mode": "NORMAL"
): In this mode, the RudderStack server runs as expected and there are no issues. - Degraded (
"mode": "DEGRADED"
): RudderStack enters the degraded mode if it keeps crashing while processing the events after a threshold number of restarts is reached. RudderStack still receives and stores the events in this mode but does not process them and route them to your specified destinations.
Contact us
For more information on the topics covered on this page, email us or start a conversation in our Slack community.