Wow, thanks, this worked great for me. In case it helps others, here are the commands in more detail:
# Connect to postgresql psql -h localhost -d puppetdb -U puppetdb -W # The psql prompt puppetdb=> delete from reports where end_time > current_timestamp; # Disconnect puppetdb=> \q On Wednesday, December 31, 2014 1:28:36 AM UTC-6, Wyatt Alt wrote: > > Hey Ryan, > > That makes sense, though I'd guess that new reports are being stored and > are available through the API, they just aren't reflected as "latest" > since that's determined by the end_time stamp. report-ttl will be > ineffective without resetting to the future, and then you'd be deleting > reports you may want to keep. > > Best bet would be to clear them manually in psql: > > delete from reports where end_time > current_timestamp; > > Wyatt > > > > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/4585054d-37f0-4e64-8d11-5412c3595619%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
