Puppet:get real-time status of catalog evaluation and post to remote server
- by txworking
According to this article http://docs.puppetlabs.com/guides/puppet_internals.html
There are four phases when puppet agent got a catalog from master.
resource generation = relationships = evaluation = reporting
Reporting
As the transaction progresses, it collects logs and metrics on what it does. At the end
of evaluation, it turns this information into a report, which it sends to the server (if
requested).
And at the end of evaluation puppet agent would generate a report and sent the report to the master.
Is there a way to get real-time status of evaluation phase and post them to a remote logcollector?
Glad for any suggestions.