Skip to content

Instantly share code, notes, and snippets.

@lwoodson
Created June 23, 2015 12:15
Show Gist options
  • Select an option

  • Save lwoodson/e55183a157d33a368c8b to your computer and use it in GitHub Desktop.

Select an option

Save lwoodson/e55183a157d33a368c8b to your computer and use it in GitHub Desktop.
select
relname,
greatest(last_vacuum, last_autovacuum) as timestamp,
case
when last_autovacuum is not null then 'autovacuum'
else 'vacuum'
end as type
from
pg_stat_user_tables
where
greatest(last_vacuum, last_autovacuum) > now() - interval '299 seconds';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment