Pingtower Docs
Docs Getting started Concepts

Concepts

Seven nouns. Everything else in the docs is built out of these.

TermWhat it isLives in
AccountYou. An email and a password. One account can belong to many tenants.pingtower.com
TenantA company or a team. Owns its own data, members and API keys. Every tenant you join gives you a separate credential scoped to just that tenant’s data.pingtower.com, or your own box
ProjectA namespace inside a tenant: a service, an environment, a product. Holds sources, rules, integrations, actions and reports. Open-alert counts roll up per project. Addressed by name.tenant
SourceOne thing that sends lines. Each source has its own ingest token, which you can rotate without touching the others, and its own retain_logs switch.project
TemplateA message’s shape: the line with the values you passed as keys substituted out. payment failed for o_48113 with keys.order = o_48113 becomes payment failed for {{ .order }}, so every order’s failure counts as the same thing.project
RuleA declarative match plus timing: what to look for, how many in what window, how often to re-page, who to escalate to.project
AlertA rule that fired. Carries a count, an escalation level, first and last seen, and the last message. Firing until acked, resolved when done.project

How isolation works

Each tenant is one SQLite file. The credential you present decides which file is opened. Nothing in a URL or a request body can reach another tenant’s data, because there is no code path that opens a file the token did not name.

Projects are namespaces within that file. A project name in a path is a filter, never a second identity check.

Roles

Three, per tenant membership.

RoleCan
ownerEverything, including deleting the tenant and setting its plan. A tenant always has at least one; removing the last one is refused.
adminThe manager tier with the owner: invite and remove members, mint and revoke API keys, rename the tenant, rename or delete a project, rotate a source token, revoke a pairing.
memberEverything on the data plane with their own API key: read and act on alerts, edit sources, rules, integrations, actions and reports.

You cannot invite someone above your own role.

Last updated 1 Sep 2026 Report a problem with this page