Nagios::Config::File - Base class for Nagios configuration files


Nagios-Object documentation  | view source Contained in the Nagios-Object distribution.

Index


NAME

Top

Nagios::Config::File - Base class for Nagios configuration files

SYNOPSIS

Top

  use Nagios::Config ;
  my $nc = new Nagios::Config("/usr/local/nagios/etc/nagios.cfg") ;
  my $resource = $nc->get_resource_cfg() ; 
  print $resource->get_attr('$USER1$') . "\n" ;

DESCRIPTION

Top

Nagios::Config::File is the base class for all Nagios configuration files. You should not need to create these yourself.

CONSTRUCTOR

Top

new ([FILE])

Creates a Nagios::Config::File.

METHODS

Top

get ([NAME], [SPLIT])

Returns the value of the attribute NAME for the current file. If SPLIT is true, returns a list of all the values split on /\s*,\s*/. This is useful for attributes that can have more that one value.

filename()

Returns the filename for the current object.

dump ()

Returns a scalar with the full configuration text ready to parse again.

AUTHOR

Top

Patrick LeBoutillier, patl@cpan.org

Al Tobey, tobeya@cpan.org

SEE ALSO

Top

Nagios::Config, Nagios::Config::Object


Nagios-Object documentation  | view source Contained in the Nagios-Object distribution.