Run the Scala Stream Collector - chuwy/snowplow-ci GitHub Wiki
HOME > SNOWPLOW SETUP GUIDE > Step 1: setup a Collector > Scala Stream Collector setup > Run the Scala Stream Collector
The Scala Stream Collector is an executable jarfile which should be runnable from any Unix-like shell environment. Simply provide the configuration file as a parameter:
$ ./snowplow-stream-collector-0.[version].0 --config my.conf
This will start the collector as a HTTP service and write serialized Thrift records to either stdout
or Kinesis, depending on your configuration.
Pinging the collector on the /health path should return a 200 OK response:
$ curl http://localhost:8080/health
You have setup the Scala Stream collector! You are now ready to setup a tracker.
Return to the setup guide.