Sentrilite

Get Sentrilite running in 2 minutes.

Free to try. No credit card. No license key required for the first install. Cloud cost attribution and cloud security in one lightweight agent.

One Docker command. Live cloud cost dashboard at http://<your-server>:8080 the moment it's running.

Sentrilite on a Kubernetes Node or Linux Server

Walkthrough

Watch the step-by-step installation video to see the full setup process in action.

Sentrilite Live Dashboard

Sentrilite tagless cloud cost attribution dashboard — click to zoom

Install Command

Run the following command on your Linux server. Docker must be installed and running. The agent requires privileged access and host PID namespace to perform kernel-level monitoring.

sudo docker run --rm -it --name sentrilite \
  --privileged --pid=host \
  -p 8080:8080 -p 8765:8765 \
  -v /sys/fs/bpf:/sys/fs/bpf \
  -v /sys/kernel/debug:/sys/kernel/debug \
  sentrilite/local:1.0.0
For Kubernetes nodes: this command runs Sentrilite as a privileged container on a single node. For DaemonSet deployment across an entire cluster, contact info@sentrilite.com.
Once the container is running, open a browser and navigate to:
http://<server-ip>:8080

Don't have a Linux server handy?

Try Sentrilite right now in your browser — no installation required.

▶  Try the Live Sandbox

To install on public cloud (AWS, GCP, Azure) or on-prem Kubernetes cluster, contact us at info@sentrilite.com

Already installed? Get the credentials you need.

Free Token — required to log into the Sentrilite dashboard at port 8080 after a Docker install.
License Key — required for production deployments on public cloud or on-prem Kubernetes.

Request a New License Key

Request a Free One-time Token

Running the Sentrilite Docker dashboard? Enter your business email to receive a one-time login token by email. Public email providers (Gmail, Outlook, Yahoo, etc.) are not accepted.

Uninstall / Cleanup

⚠️ Stop the running Sentrilite container first (docker stop sentrilite) before running the uninstall command.

To cleanly unload all eBPF programs and remove Sentrilite from the host, run the following command. This executes the unload script inside a temporary container with the same privileges used during installation — no residual kernel objects are left behind.

sudo docker run --rm \
  --privileged --pid=host \
  -v /sys/fs/bpf:/sys/fs/bpf \
  -v /sys/kernel/debug:/sys/kernel/debug \
  --entrypoint /opt/sentrilite/unload_bpf.sh \
  sentrilite/local:1.0.0