PostgreSQL & TimescaleDB

The relational database you probably already run.

Point Plexus at a database you already have. Nothing is copied — queries run where the data lives, through a cache, a circuit breaker and a concurrency ceiling.

What Plexus reads
  • Any table you map: a time column, a value column, and optionally a column that names the thing each row is about
  • The schema, to suggest that mapping instead of asking you to type it
What it does not read
  • Anything you have not mapped. An unmapped connection describes nothing, which is a connection nobody has pointed at a table yet — not a failure
  • Writes of any kind. The connection is read-only
Connecting it
  1. 1Paste a connection string
  2. 2Pick the tables worth tracking
Worth knowing
  • SSH tunnelling to a bastion is supported for databases that are not directly reachable.
Next

Connect it, and the dashboards build themselves from the first data that lands.