I figured this out. I missed a step while setting up the PuppetDB. I did
not add "reports = store,puppetdb" in the puppet.conf so it never really
added the reports in the database.
Adding the following and restarting it fixed the issues for me:
# vi /etc/puppetlabs/puppet/puppet.conf
[master]
Thanks Austin,
The output didn't give me any information so I tried to look in the
database. Is it coming from *public.report_statuses *or
*public.resource_events* because they are both blank for me. Is that the
right tabel?
Please let me know.
Thanks!
On Thursday, February 14, 2019 at 1:52:
If you want all information about all failed reports you can query for
reports that have a status of failed. An example using curl would look like,
curl -X POST http://localhost:8080/pdb/query/v4 \
-H 'Content-Type:application/json' \
-d '{"query": "reports { status = \"failed\" }"}'
There ar
Sorry I forgot to add:
puppetserver version: 5.3.7
puppetdb version: 5.2.7
puppet agent version: 5.5.8
On Thursday, February 14, 2019 at 8:42:35 AM UTC-8, Aditya S wrote:
>
> Hi,
>
> Is there a way to see failed executions in PuppetDB? I can see all the
> successful classes in "public.catalog_r