> ## Documentation Index
> Fetch the complete documentation index at: https://doc.kovio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify an install

> Confirm the SDK is running on the robot and reporting to Kovio.

## On the robot

```bash theme={null}
systemctl status kovio      # should be: active (running)
journalctl -u kovio -f      # live logs — registration + activity
```

Healthy logs show the client coming up, an `SDK activated` line, and (in sim
mode) the screen serving creative.

## On your dashboard

Within a minute of install you should see, under the fleet that owns the key:

<Steps>
  <Step title="The robot is listed">
    A new robot with a recent heartbeat (online), its model and SDK version.
  </Step>

  <Step title="Activity is flowing">
    An `sdk.activated` event, then verified moments.
  </Step>

  <Step title="Impressions are counting">
    Impressions and revenue climb on the fleet view, attributed to your
    campaigns.
  </Step>
</Steps>

## Update or reinstall

Re-running the one-command installer installs the newest SDK version matched to
the robot's runtime. The previous version keeps running until then.

## Uninstall

```bash theme={null}
sudo systemctl disable --now kovio
sudo rm /etc/systemd/system/kovio.service
sudo pip3 uninstall -y adsdk
sudo rm -rf /etc/kovio
```
