What is Rudder?
Short answer: Rudder is an open-source Segment alternative written in Go, built for the enterprise. .
Long answer: Rudder is a platform for collecting, storing and routing customer event data to dozens of tools. Rudder is open-source, can run in your cloud environment (AWS, GCP, Azure or even your data-centre) and provides a powerful transformation framework to process your event data on the fly.
Released under Apache License 2.0
Getting Started with Adjust Integration of iOS SDK
-
Add Adjust as a destination in the Dashboard and define
apiToken
andeventMapping
-
Rudder-Adjust is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'Rudder-Adjust'
RudderClient
Initialize Put this code in your AppDelegate.m
file under the method didFinishLaunchingWithOptions
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:<YOUR_DATA_PLANE_URL>];
[builder withFactory:[RudderAdjustFactory instance]];
[RSClient getInstance:<YOUR_WRITE_KEY> config:[builder build]];
Send Events
Follow the steps from Rudder iOS SDK