Install

Start monitoring in one minute

The agent is installed on each DB server: read-only, outbound-only, a single static binary. You don’t need to expose your server.

Linux

Ready

systemd · amd64 / arm64

$ curl -fsSL https://get.dbgaze.com | sh

Windows

Ready

service · amd64 (MSSQL)

$ iwr https://get.dbgaze.com/install.ps1 | iex

Docker

Soon

sidecar on each DB server

$ docker run -d dbgaze/agent
01

Install the agent on the DB server

A single static binary, no dependencies. The agent runs on the same host as the database — not a central collector connecting remotely.

curl -fsSL https://get.dbgaze.com | sh
02

Create a read-only user

The agent connects with read-only access. The connection password is stored with AES-256-GCM on the backend and delivered to the agent end-to-end encrypted via an X25519 sealed box.

CREATE USER dbgaze WITH PASSWORD '***';
GRANT pg_monitor TO dbgaze;
03

Connect to the dashboard

Paste the agent token into the onboarding wizard. Metrics start flowing within seconds; dashboard, health score and alerts are ready.

dbgaze connect --token <agent-token>

Security note

The agent only opens outbound HTTPS connections — it never opens an inbound port. Raw SQL text is never collected. Connection secrets are end-to-end encrypted and masked as *** in logs.