Documentation
Everything you need to get started with ConnLog agents.
Quick start
1
Create an account
Sign up for free at connlog.com/register. No credit card required.
2
Create a workspace
A workspace is created automatically when you register. You can create additional workspaces from the dashboard.
3
Register an agent
In your workspace, click "Add Agent" to get an agent token. Each agent gets a unique token for authentication.
4
Install the agent
Run the install command on your server. The agent starts sending heartbeats immediately.
Installation
Install the ConnLog agent on any Linux server (x86_64 or aarch64). Replace YOUR_TOKEN with the token from your agent registration page.
Recommended: download, then install
bash
# Step 1: Download the installer
curl -sSf https://connlog.com/install.sh -o install.sh
# Step 2: (Optional) Review the script
less install.sh
# Step 3: Run the installer
sudo bash install.sh --install --token YOUR_TOKEN
# Step 4: Verify it's running
systemctl status connlog-agentQuick install (single command)
curl -sSf https://connlog.com/install.sh | sudo bash -s -- --token YOUR_TOKENWhat the install script does
- Detects your system architecture (amd64 or arm64)
- Downloads the correct ConnLog agent binary for your OS and architecture
- Verifies the SHA-256 checksum of the downloaded binary
- Copies the binary to /usr/local/bin/connlog-agent
- Creates a systemd service unit at /etc/systemd/system/connlog-agent.service
- Starts the service and enables it on boot
- Begins sending heartbeats immediately
What it does NOT do: Install dependencies, modify system packages, add repositories, or read any files on your server. The agent is a single static binary with zero dependencies.