Getting Started
Last updated
Was this helpful?
Was this helpful?
https://agents.sealights.co/slcpp/latest/sealights-cpp-agent-linux-self-contained.tar.gzSL_DOMAIN=agents.sealights.co
# Download and extract Sealights C++ Agent (self-contained Linux package)
echo "[Sealights] Downloading Sealights C++ Agent..."
wget -nv -O sealights-cpp-agent-linux-self-contained.tar.gz \
https://${SL_DOMAIN}/slcpp/latest/sealights-cpp-agent-linux-self-contained.tar.gz \
&& tar -xvf sealights-cpp-agent-linux-self-contained.tar.gz \
&& rm sealights-cpp-agent-linux-self-contained.tar.gz
# Verify installation (prints version)
./sealights-cpp-agent --version 2> /dev/null# SeaLights domain (replace with your custom domain if needed)
SL_DOMAIN=agents.sealights.co
# Specific version to download (must include the "v" prefix)
SL_CPP_AGENT_VERSION=v0.3.0.1
echo "[Sealights] Downloading Sealights C++ Agent..."
wget -nv -O sealights-cpp-agent-linux-self-contained.tar.gz \
https://${SL_DOMAIN}/slcpp/${SL_CPP_AGENT_VERSION}/sealights-cpp-agent-linux-self-contained.tar.gz
# Extract the agent and clean up the archive
tar -xvf sealights-cpp-agent-linux-self-contained.tar.gz
rm sealights-cpp-agent-linux-self-contained.tar.gz
# Verify installation (prints version)
./sealights-cpp-agent --version 2> /dev/null