Files
chef/site-cookbooks/kosmos_postgresql/files/list_replication_slots.sh

6 lines
135 B
Bash

#!/bin/bash
psql -c "
SELECT slot_name,
pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(), restart_lsn))
FROM pg_replication_slots;"