Excerpt | ||
---|---|---|
Agent FileOur Python agent is published in Python PyPi repository: Depending on your OS, the SeaLights Go Agent files can be downloaded from: pypi.org/project/sealights-python-agent/You can download it and all its dependencies using the following command:
The agent uses the |
...
Where OS_ARCH is one of: |
Initializing the SeaLights CLI
Code Block |
---|
./slcli config init --lang go --token ./sltoken.txt |
Sample script
Code Block | ||
---|---|---|
| ||
echo "[Sealights] Downloading Sealights Golang & CLI Agents..."
wget -nv -O sealights-go-agent.tar.gz https://agents.sealights.co/slgoagent/latest/slgoagent-linux-amd64.tar.gz
wget -nv -O sealights-slcli.tar.gz https://agents.sealights.co/slcli/latest/slcli-linux-amd64.tar.gz
tar -xzf ./sealights-go-agent.tar.gz && tar -xzf ./sealights-slcli.tar.gz
rm -f ./sealights-go-agent.tar.gz ./sealights-slcli.tar.gz
./slgoagent -v 2> /dev/null | grep version && ./slcli -v 2> /dev/null | grep version |