Skip to content

Overview

This site will guide you on:

  • Familiarize you on how to setup the local Data Drivers racing simulators to expose data
  • Get data into Splunk for the simulators
  • Access the Splunk Dashboards

Please reach out Slack on #datadrivers-inh if you have any emergencies arise. Please email datadrivers@splunk.com for any feedback or feature requests.

Pre-requisites

  • Apple MacBook (Apple Silicon M1/M2)
  • AWS/EC2 (Ubuntu 22.04 or above)
  • t2.large (2 vCPU, 8GB RAM)
  • External IP address
  • Inbound access on ports 8501/tcp and 20777-20784/udp

Install Docker

Docker is required to run the F1 2024 Collector and UI. The Collector will take the UDP stream from F1 2024 and transform the stream into a metric payload for Splunk Observability Cloud and Splunk Enterprise/Cloud. The UI is used to configure where to send the metrics, start/stop the Collector(s) and change the name of the current driver.

The following instructions will install Docker on your laptop or EC2 instance:

sudo apt remove docker docker-engine docker.io containerd runc
sudo apt update
sudo apt install ca-certificates curl gnupg -y
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
sudo usermod -aG docker $USER