Installation
Deployment Options
SignalPick can be deployed in several ways depending on your infrastructure.
Kubernetes (Recommended)
Deploy using Helm:
helm repo add signalpick https://charts.signalpick.comhelm repo update
helm install signalpick signalpick/agent \ --namespace observability \ --create-namespace \ --set apiKey=YOUR_API_KEY \ --set collector.endpoint=your-collector:4317Docker
Run as a standalone container:
docker run -d \ --name signalpick-agent \ -e SIGNALPICK_API_KEY=YOUR_API_KEY \ -e COLLECTOR_ENDPOINT=your-collector:4317 \ -p 4317:4317 \ -p 4318:4318 \ signalpick/agent:latestBinary
Download and run directly:
# Downloadcurl -L https://releases.signalpick.com/agent/latest/linux-amd64 -o signalpick-agentchmod +x signalpick-agent
# Run./signalpick-agent --api-key=YOUR_API_KEYConfiguration
See Configuration Reference for all available options.