
RackMan::Format::Cacti - Create Cacti graphs for the given RackObject

use RackMan::Format::Cacti;
RackMan::Format::Cacti->write({
rackdev => $rackdev, # a RackMan::Device instance
rackman => $rackman, # a RackMan instance
});

This module declares the given RackObject within Cacti and creates a few associated graphs or graph templates.

Do the work.
Arguments
Arguments are expected as a hashref with the following keys:
rackdev - (mandatory) a RackMan::Device instancerackman - (mandatory) a RackMan instanceverbose - (optional) boolean, set to true to be verbose
This module gets its configuration from the [format:cacti] section of the main rack.conf, with the following parameters:
Path of the directory where the Cacti command line programs are located.
Path of the PHP interpreter. Default to /usr/bin/php
Specify an optional user account to execute the Cacti programs under, using sudo(8).

Sebastien Aperghis-Tramoni