Stakeholder Basics
8 examples to get you started with Postgres stakeholder communication - 5 basic and 3 intermediate.
Search across all documentation pages
8 examples to get you started with Postgres stakeholder communication - 5 basic and 3 intermediate.
SELECT pg_size_pretty(pg_database_size(current_database())) AS db_size;
SELECT pg_size_pretty(sum(pg_total_relation_size(relid))) FROM pg_stat_user_tables;| Technical signal | Business translation |
|---|---|
| PGDATA +18% MoM | Infrastructure budget overrun in 4 months |
| WAL retention spike | Checkout outage risk if disk fills |
| Index bloat 30% | Slower reports, longer month-end close |
SELECT date_trunc('month', now()) AS month,
pg_size_pretty(pg_database_size('app')) AS size;
-- Compare to last month export in spreadsheetCheckout p95 rose from 120ms to 800ms (database slice 600ms).
Conversion dropped 0.4% = ~$220k/month modeled revenue.
Fix: index + pool tuning, 2 engineering days, no schema break.SELECT query, mean_exec_time, calls
FROM pg_stat_statements
WHERE query LIKE '%orders%'
ORDER BY mean_exec_time * calls DESC
LIMIT 5;Related: Cost Conversations - finance alignment
## Option A: Sunday 03:00 UTC window
- User impact: up to 45s write delay on billing API
- Benefit: validate FK on 80M payments (correctness)
- Skip risk: continued orphan rows in refunds
## Option B: Defer 6 weeks
- User impact: none now
- Risk: finance reconciliation errors accumulateSELECT application_name,
pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(), replay_lsn)) AS lag_bytes
FROM pg_stat_replication;| Lag | Stakeholder message |
|---|---|
| < 1 MB | Real-time dashboards OK |
| 500 MB | Analytics may miss last 10 minutes of sales |
| 50 GB | Failover may lose more than DR promise |
"We need pgaudit on payments schema" →
"Regulators expect immutable payment access logs; gap is audit finding severity High."Related: Data Retention & Legal Holds - GDPR tension
# Database Health - July 2026
**Status:** Yellow (disk growth)
**User impact last month:** 12 min checkout degradation (Sev-2)
**Spend:** $48k/mo RDS + $6k observability
**Ask:** Approve Q3 archive project ($40k eng, saves $8k/mo storage)Product wants feature freeze blackout; platform needs PG 18 upgrade before EOL.
EOL: PostgreSQL 17 community support ends 2029; vendor extended 1 year.
Risk of defer: unpatched CVE exposure + hiring friction.
Proposal: upgrade week 2 after peak season; 4h planned budget spend.## Customer-safe summary (Sev-2)
Between 14:22-14:48 UTC some customers saw slow checkout.
No data was lost. Root cause: long database transaction from deploy.
Prevention: timeout policy + training (in progress).Related: Incident Basics - comms templates
Stack versions: This page was written for PostgreSQL 18.4 (stable 18, maintenance 17), pgvector 0.8+, PgBouncer 1.x, Patroni 3.x, and PostGIS 3.5+.
Reviewed by Chris St. John·Last updated Jul 16, 2026