Warning - This has options has been removed as of Foreman 0.1-5, as graphs are now rendered within Foreman directly.¶
Puppet RRD Graphs¶
If you use Puppet RRD graph report generator, it is possible to link the graphs directly from the host list.
Foreman requires that you allow HTTP access to the directory where the reports are generated (probably on each puppetmaster that you use).
You would need to configure the config/settings.yaml file:
#:rrd_report_url: report
That would mean you should be able to access your reports under http://host_puppetmater/report
If you use apache, this could be something similar to:
# Grant access to puppet reports
Alias /report /var/lib/puppet/rrd/
<Directory /var/lib/puppet/rrd/>
PassengerEnabled off # remove this line if you are not using passenger
Options Indexes
Order deny,allow
Allow from all
</Directory>
Once changed, you would need to restart Foreman.
